我正在尝试使用.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
中帮助解决此问题答案 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]