要删除文件扩展名的Regex 时间:2011-09-28 作者:Matthew Xerri 我正在使用重定向插件,我想用它将旧的静态html页面重定向到新的Wordpress页面。所以基本上任何看起来像http://www.example.com/page.html 成为http://www.example.com/page/唯一的问题是我想排除一个文件夹http://www.example.com/specialfolder/page.html 应保持不变。 1 个回复 SO网友:Joost de Valk 让我们看看,这应该可以做到:RewriteCond %{REQUEST_URI} \\.html$ RewriteCond %{REQUEST_URI} !^/specialfolder/ RewriteRule (.*)\\.html http://www.example.com$1 [R=301,L] 结束 文章导航