Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は正規表現と .htaccess の書き換えとリダイレクトに精通していません。私は次のものを持っています:
www.site.com/subDomainName
そして、私はそれをにリダイレクトしたい
subDomainName.site.com.
リダイレクトを行うためのコードを取得できましたが、www.subDomainName.site.com を指し続けていました。
ドキュメント ルートの htaccess ファイルに次のルールを追加してみてください。
RewriteEngine On RewriteCond %{HTTP_HOST} !^subDomainName\.site\.com$ [NC] RewriteRule ^subDomainName(.*)$ http://subDomainName.site.com$1 [L,R]
リダイレクトを永続的にするRには、角括弧内のフラグを に変更しR=301ます。
R
R=301