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 コードがわかりません :/
サブドメイン「l」が使用されている場合、タイトルに記載されているようにリダイレクトする必要があります
ブラウザでも、URL は l.domain.com/TARGETID として表示されます。
これをドキュメント ルートの htaccess ファイルに追加してみてください。
RewriteEngine On RewriteCond %{HTTP_HOST} ^l\.domain\.com$ [NC] RewriteCond %{REQUEST_URI} !^/redirect RewriteRule ^(.*)$ /redirect?target=$1 [L,QSA]