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.
ドメインがphpに到達する前にドメインをリダイレクトする必要があるという問題があります。ヘッダーを実行できるようになるまでには、手遅れです。
どのようにできるのか
if (domain == 'www.example.com') redirect www.domain.com;
私の.htaccessで?
mod_rewrite の使用
RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.example\.com [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R,L]