我想将子目录中的所有文件重定向到新的根URL。
旧网址
www.domain.com/subdirectory/filename-here.html
新位置
www.domain.com/filename.here.html
旧网址已在Google中列出,需要进行某种重定向。 我确信htaccess是去这里的方式,但不确定解决方案。
答案 0 :(得分:1)
RewriteEngine on
RewriteRule %{REQUEST_URI} ^/subdirectory/.*
RewriteRule subdirectory/(.*)$ /$1 [R=301,L]
在here上测试过。如果它不起作用 - 以这种方式为[^/]
添加屏蔽:[^\/]