mod_rewrite正则表达式匹配根级整个名称页面

时间:2016-11-25 15:13:37

标签: apache mod-rewrite

我想按照简单的架构重写许多页面:

old_page.php content / new-page.php

apple.php 必须重写为 fruits / red-apple.php 时出现问题,因为我进入了重写循环 ,所以我必须匹配domain / apple.php

我不确定我是否可以设置RewriteRule,或者我还需要rewriteCond ..

1 个答案:

答案 0 :(得分:0)

您应该向我们展示您正在使用的内容,但听起来您的模式只是缺少字符串锚点的开头和结尾。 E.g:

RewriteBase /
RewriteRule ^apple\.php$ fruits/red-apple.php [NS,L]

如果您有很多规则,最好使用RewriteMap