【发布时间】:2013-06-15 21:16:16
【问题描述】:
我已将我的网站从 www.site.com/shop/ 子文件夹移至根目录。现在“shop”文件夹不再存在,我想将仍然访问 site.com/shop/whateverhtml 的人重定向到 site.com/whateverhtml 我尝试了不同的重写规则,但没有运气。
RewriteEngine on
RewriteRule %{REQUEST_URI} ^/shop/.*
RewriteRule shop/(.*)$ /$1 [R=301,L]
或者像这样
RedirectMatch 301 ^/shop/$ http://site.com/
谢谢。
【问题讨论】: