沃梦达 / 编程技术 / 服务器 / 正文

Apache htaccess 重写如果文件存在!

如果文件 data/cache/index.html 存在,那么才重写。否则使用默认的MVC 重写!by default.fu@foxmail.comRewriteEngine onRewriteCond %{DOCUMENT_ROOT}/data/cache/list_1.html -fRewriteRule ^game\/?$ data/cac...

如果文件 data/cache/index.html 存在,那么才重写。否则使用默认的MVC 重写!by default.fu@foxmail.com

        RewriteEngine 
        on

        RewriteCond 
        %{DOCUMENT_ROOT}/data/cache/list_1.html -f

        RewriteRule 
        ^game\/?$ data/cache/list_1.html [L]

        
            
RewriteCond 
            %{REQUEST_FILENAME} !-f

            RewriteCond 
            %{REQUEST_FILENAME} !-d

            #RewriteRule ^(.*)$ index.php/$1 [PT,QSA,L]

            RewriteRule 
            ^(.*)$ index.php?/$1 [PT,QSA,L]
        


原文:http://blog.csdn.net/default7/article/details/41277251

本文标题为:Apache htaccess 重写如果文件存在!

基础教程推荐