Spaces:
Runtime error
Runtime error
Commit ·
c1a80df
1
Parent(s): 142fdcc
public htaccess
Browse files- public/.htaccess +8 -0
public/.htaccess
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<IfModule mod_rewrite.c>
|
| 2 |
+
Options -Multiviews
|
| 3 |
+
RewriteEngine On
|
| 4 |
+
RewriteBase /public
|
| 5 |
+
RewriteCond %{REQUEST_FILENAME} !-d
|
| 6 |
+
RewriteCond %{REQUEST_FILENAME} !-f
|
| 7 |
+
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
|
| 8 |
+
</IfModule>
|