소스 검색

Added .htaccess

Laurent Treguier 9 년 전
부모
커밋
5f2653d545
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10
    0
      .htaccess

+ 10
- 0
.htaccess 파일 보기

@@ -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>