Spaces:
Runtime error
Runtime error
Commit
Β·
eff3714
1
Parent(s):
3dc01ae
mvc
Browse files- .htaccess +5 -0
- app/.htaccess +1 -0
- app/config/config.php +0 -0
- app/controllers/.gitkeep +0 -0
- app/helpers/.gitkeep +0 -0
- app/init.php +0 -0
- app/libraries/Controller.php +0 -0
- app/libraries/Core.php +0 -0
- app/libraries/Database.php +0 -0
- app/models/.gitkeep +0 -0
- app/views/home/index.php +0 -0
- app/views/inc/footer.php +0 -0
- app/views/inc/header.php +0 -0
- index.php β index-test.php +0 -0
- index.html β index1.html +0 -0
- public/css/styles.css +0 -0
- public/img/.gitkeep +0 -0
- public/index.php +4 -0
- public/js/main.js +0 -0
.htaccess
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<IfModule mod_rewrite.c>
|
2 |
+
RewriteEngine on
|
3 |
+
RewriteRule ^$ public/ [L]
|
4 |
+
RewriteRule (.*) public/$1 [L]
|
5 |
+
</IfModule>
|
app/.htaccess
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Options +Indexes
|
app/config/config.php
ADDED
File without changes
|
app/controllers/.gitkeep
ADDED
File without changes
|
app/helpers/.gitkeep
ADDED
File without changes
|
app/init.php
ADDED
File without changes
|
app/libraries/Controller.php
ADDED
File without changes
|
app/libraries/Core.php
ADDED
File without changes
|
app/libraries/Database.php
ADDED
File without changes
|
app/models/.gitkeep
ADDED
File without changes
|
app/views/home/index.php
ADDED
File without changes
|
app/views/inc/footer.php
ADDED
File without changes
|
app/views/inc/header.php
ADDED
File without changes
|
index.php β index-test.php
RENAMED
File without changes
|
index.html β index1.html
RENAMED
File without changes
|
public/css/styles.css
ADDED
File without changes
|
public/img/.gitkeep
ADDED
File without changes
|
public/index.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Hola mundo
|
2 |
+
<?php
|
3 |
+
phpinfo();
|
4 |
+
?>
|
public/js/main.js
ADDED
File without changes
|