1
私は自分のウェブサイトにいくつかのページを新しい「エラーページ」にリダイレクトしようとしています。私は見てみることができますか?すでに作成された.htaccessファイルが私のために作成されたので、www.comから離れてexample.comだけに行きます。だから、一見して何が起きているか教えてください。してください:htaccessリダイレクトと書き換えの条件
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^/?$ "http\:\/\/example\.com\/" [R=301,L]
RedirectPermanent 301 /oldpage.html http://www.example.com/missing-page.html
RedirectPermanent 301 /oldpage.html http://www.example.com/missing-page.html
RedirectPermanent 301 /oldpage.html http://www.example.com/missing-page.html
RedirectPermanent 301 /oldpage.html http://www.example.com/missing-page.html
RedirectPermanent 301 /oldpage.html http://www.example.com/newpage.html
問題を簡略化しようとすると、複数のredirectPermanentsがいくつかのoldpage.htmlファイルに使用されていることに注意しなければなりません。つまり、複数の古いページがあります。 a missing-page.html – Tanner
/oldpage.htmlを同じフォルダ内のmissing-page.htmlにリダイレクトしたい場合 – Tanner
リダイレクトするように指定したすべてのページで404エラーが発生します。 – Tanner