该站点上有一些包含 html 文件的目录,例如:
site.com/folderone/index.html
site.com/foldertwo/index.html
它可以通过以下链接获得:
site.com/folderone
site.com/foldertwo
现在所有这些目录都移动到 /old-pages:
site.com/old-pages/folderone/index.html
site.com/old-pages/foldertwo/index.html
但旧链接应该可用,所以 .htaccess 文件:
RewriteEngine on
RewriteRule ^folde(.*)$ /old-pages/folde$1 [L]
它重写了正确的site.com/folderone/和site.com/folderone/index.html
问题是:对于site.com/folderone它不是重写而是重定向到site.com/old-pages/folderone/