当用户在http://xyz.mywebsite.com是虚拟且不存在的地址栏中键入http://xyz.mywebsite.com时,我想将网站用户重定向到 www.mywebsite/users.php?user=xyz .
我是初学者,对 url 重写不太了解。试图搜索谷歌和堆栈溢出,但没有得到解决方案。
我从这个开始
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^([^.]+).mobilehealthnig.com$
RewriteRule (.*) http://www.mywebsite.com/users.php?subdomain=%1
</IfModule>
也试过这个,但这些都不适合我
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.mywebsite.com
RewriteCond %{HTTP_HOST} ([^.]+).mywebsite.com
RewriteRule ^(.*)$ /users.php?subdoamin=%1