我无法重定向我们服务器上不再存在的整个目录。
以下所有变体都不起作用,我只是得到一个 404 Page Not Found。
.htaccess 文件如下所示:
redirect 301 /non_existent_directory/ http://my.website.com/existent_directory/
是否可以为此使用重定向 301 指令?或者这只能通过 mod_rewrite 解决?
谢谢
我什至尝试过:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?my\.website\.com\/non_existent_directory\/$ [NC]
RewriteRule ^(.*)$ http://my.website.com/existent_directory/ [R=301,L]
没运气...