将虚拟子域重定向到另一个文件

时间:2015-05-26 11:34:03

标签: .htaccess url-rewriting subdomain virtualhost wildcard-subdomain

我有http://[username].website.com

等虚拟子域名

现在访问此网址时,我想显示网页index2.php而不是index.php的内容,因此当访问索引页http://website.comhttp://[username].website.com

时,返回的内容会有所不同

我尝试过编辑htaccess文件但没有成功。 我应该在文件中定义哪些条件?

通过将文件放在名为" subdomain"的文件夹中,查看我使用过的代码。但它没有正常工作

 Options +FollowSymLinks
 RewriteEngine On
 RewriteCond %{HTTP_HOST} ^(.*)\.website\.com
 RewriteRule ^(.*)$ http://website.com/subdomains/%1/$1 [L,NC,QSA]

0 个答案:

没有答案