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.
そのURLの書き換えルールを作成する方法
http://www.abc.in/subfoldername/index.php?alist&TP=xyz&ct=bcd
に
http://bcd.abc.in
次のコードを.htaccessに入力します。
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?([a-z0-9_-]+)\.(.+)$ RewriteRule ^$ http://%{HTTP_HOST}/subfoldername/index.php?alist&TP=xyz&ct=%2 [L]