我有http://[username].website.com
等虚拟子域名现在访问此网址时,我想显示网页index2.php而不是index.php的内容,因此当访问索引页http://website.com和http://[username].website.com
时,返回的内容会有所不同我尝试过编辑htaccess文件但没有成功。 我应该在文件中定义哪些条件?
通过将文件放在名为" subdomain"的文件夹中,查看我使用过的代码。但它没有正常工作
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(.*)\.website\.com
RewriteRule ^(.*)$ http://website.com/subdomains/%1/$1 [L,NC,QSA]