.htaccess捕获除@和www之外的所有子域以与PHP一起使用

时间:2018-06-10 10:09:16

标签: apache .htaccess mod-rewrite apache2

我的htaccess非常有效,但是我需要将子域放到变量中以发送给PHP,我无法让它工作。

RewriteCond %{HTTP_HOST} !^www.test.com$ [NC]
RewriteCond %{HTTP_HOST} !^test.com$ [NC]
RewriteRule ^(.*)$ https://test.com/subdomain.html?u=$1 [QSA,L,R=302]

演示http://test.test.com/?qr=1157595433转到

https://test.com/subdomain.html?u=&qr=1157595433

但我需要

https://test.com/subdomain.html?u=test&qr=1157595433

0 个答案:

没有答案