在.htaccess中处理动态子域

时间:2014-03-28 12:51:46

标签: .htaccess subdomain

我正在尝试使用.htacess

创建自定义域名

这就是我正在做的事情

http://username.mydomain.com正在访问http://mydomain.com/live/agent/index.php?agent_user_name=username(正常工作)

这里是.htaccess

RewriteEngine on

RewriteCond %{HTTP_HOST} ^([^.]+)\.mydomain\.com$ [NC]

RewriteCond %1 !^www$ [NC]

RewriteRule ^$ /live/agent/index.php?agent_user_name=%1 [L]

但现在我也要处理其他页面

http://username.mydomain.com/blog应该访问 http://mydomain.com/live/agent/blog.php?agent_user_name=username

请在.htaccess

中帮助解决此问题

1 个答案:

答案 0 :(得分:1)

您可以使用以下附加规则:

RewriteEngine on

RewriteCond %{QUERY_STRING} ^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^([^.]+)\.mydomain\.com$ [NC]
RewriteRule ^/?$ /live/agent/index.php?agent_user_name=%1 [L]

RewriteCond %{QUERY_STRING} ^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTP_HOST} ^([^.]+)\.mydomain\.com$ [NC]
RewriteRule ^(.+?)/?$ /live/agent/$1.php?agent_user_name=%1 [L]