返回列表 回复 发帖

htaccess设置不同的子域名绑到不同的目录文件

RewriteEngine on
RewriteBase /

#以admin.google.com为例
RewriteCond %{HTTP_HOST} ^admin\.google\.com$ [NC]
RewriteRule ^(.*)/$ admin.php/$1 [L]

#以www.google.com为例
RewriteCond %{HTTP_HOST} ^www\.google\.com$ [NC]
RewriteRule ^(.*)/$ index.php/$1 [L
返回列表