我正在尝试将所有子域重定向(http://*.domain.com)
到特定的 html 文件(http://domain.com/index.html)
。但我也希望可见的子域名不会改变。
我用 .htaccess 试过这个:
Options -MultiViews
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
#RewriteCond %{REQUEST_URI} !^/parent/
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com$
RewriteRule (.*) /index.html [L]
但它根本不起作用。
谁能帮我?