Explorar el Código

Added .htaccess

Laurent Treguier hace 10 años
padre
commit
5f2653d545
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10
    0
      .htaccess

+ 10
- 0
.htaccess Ver fichero

@@ -0,0 +1,10 @@
1
+<IfModule mod_rewrite.c>
2
+    Options +FollowSymlinks
3
+    Options +Indexes
4
+    RewriteEngine on
5
+
6
+    RewriteCond %{SCRIPT_FILENAME} !-f
7
+    RewriteCond %{SCRIPT_FILENAME} !-d
8
+
9
+    RewriteRule ^(.*)$   index.php?uri=/$1    [NC,L,QSA]
10
+</IfModule>