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.
我正在尝试将子域别名为搜索查询。
例如,furry-rabbits.example.com将别名为/search.php?query=furry-rabbits
furry-rabbits.example.com
/search.php?query=furry-rabbits
地址栏不能“重定向”,而是显示furry-rabbits.example.com
我通常可以使用 SO 找到几乎任何东西的答案,但我是一名中级编码员,似乎找不到这个答案。
RewriteCond %{HTTP_HOST} ^(.*)\.example.com$ RewriteRule ^(.*)$ http://example.com/search.php?query=$1 [QSA,L]