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.
如何为该网址创建重写规则,例如
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]