소스 검색

Configuration update

markseu 9 년 전
부모
커밋
dca5188dfe
1개의 변경된 파일2개의 추가작업 그리고 10개의 파일을 삭제
  1. 2 10
      .htaccess

+ 2 - 10
.htaccess

@@ -1,17 +1,9 @@
 <IfModule mod_rewrite.c>
 RewriteEngine on
 
-# Yellow dynamic pages
-
+DirectoryIndex index.html yellow.php
+RewriteRule ^(cache|content|system)/ error [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule ^ yellow.php [L]
-DirectoryIndex index.html yellow.php
-RewriteRule ^(cache|content|system)/ error [L]
-
-# Yellow static pages
-
-RewriteCond %{REQUEST_FILENAME} -f
-RewriteRule ^[^\.]+$ - [T=text/html,L]
-ErrorDocument 404 /error.html
 </IfModule>