いくつかのページの URL が変更されたため、いくつかの 301 リダイレクトを設定したクライアント サイトがあります。
そこに問題はありません、彼らは魅力のように働きます。問題は、最初のサイトのサブドメインとして設定された 2 番目のサイトがあり、リダイレクトがサブドメインにも適用されていることです。
ルート内の指定された HTML ファイルにリダイレクトを適用するにはどうすればよいですか?
これが私の現在のHTACCESSファイルです:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# if subdomain then bail out
RewriteCond %{HTTP_HOST} ^subdomain\. [NC]
RewriteRule ^ - [L]
RewriteRule ^home\htm$ http://analystsolutions.com/ [L,NC,R=301]
RewriteRule ^membersolutions\.php$ http://analystsolutions.com/ [L,NC,R=301]
RewriteRule ^institutionalsolutions\.html$ http://analystsolutions.com/institutions [L,NC,R=301]
RewriteRule ^thebook\.html$ http://analystsolutions.com/book [L,NC,R=301]
RewriteRule ^about\.html$ http://analystsolutions.com/about-us [L,NC,R=301]
RewriteRule ^assessment http://analystsolutions.com/equity-research-assessment [L,NC,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
ありがとう!