サーバーに存在しなくなったディレクトリ全体をリダイレクトするのに問題があります。
以下のすべてのバリエーションが機能しておらず、404ページが見つかりません。
.htaccessファイルは次のようになります。
redirect 301 /non_existent_directory/ http://my.website.com/existent_directory/
これにRedirect301ディレクティブを使用することは可能ですか?それとも、これは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]
運がない...