码迷,mamicode.com
首页 > 数据库 > 详细

Apache htaccess 重写如果文件存在!

时间:2014-11-19 11:01:21      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:htaccess

如果文件 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]


Apache htaccess 重写如果文件存在!

标签:htaccess

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!