为什么这个mod_rewrite规则不起作用(通过.htaccess一个特定的url到另一个)

时间:2010-09-23 16:03:38

标签: regex .htaccess mod-rewrite

RewriteRule ^ / tag / term $ / tag / term-expanded-here [R]

1 个答案:

答案 0 :(得分:0)

如果您是using mod_rewrite in a .htaccess file,则需要从模式中删除路径前缀:

  

在.htaccess文件中使用重写引擎时,每个目录前缀(对于特定目录始终相同)会自动删除以进行模式匹配并自动添加替换完成后。

如果文档根目录中有.htaccess文件,则它是前导/

RewriteRule ^tag/term$ /tag/term-expanded-here [R]