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.
助けてください。次のように、2 番目のドメインで最初のドメインの URL を簡素化する必要があります。
http://second.domain/"username_variable"
見せている
http://first.domain/jobseeker/site/cv/username/"username_variable"
2 番目のドメインは、最初のドメインのアドオン ドメインです。
htaccessでできますか?
2 番目のドメインのドキュメント ルートにある htaccess ファイルで:
RewriteEngine On RewriteCond %{HTTP_HOST} second.domain [NC] RewriteRule ^(.*)$ http://first.domain/jobseeker/site/cv/username/$1 [L,R=301]