【发布时间】:2012-11-06 22:49:20
【问题描述】:
我正在尝试将 (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]
但它根本不起作用。
谁能帮帮我?
【问题讨论】:
标签: .htaccess redirect subdomain