获取生成子域通配符作为查询

时间:2018-12-26 12:37:49

标签: .htaccess mod-rewrite wildcard-subdomain

我已经就上述主题进行了深入的搜索,但是我自己的情况未得到处理,有些只对一位导演有效。 我只需要使用.htaccess重写类似me.example.com/folder1/folder2/file的文件就可以成为example.com/folder1/folder2/file.html?user=me 谢谢 我尝试过

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] 
RewriteCond %{HTTP_HOST} !^(www)\. [NC]
RewriteCond %{HTTP_HOST} ^(.*)\.(.*)\.com$ [NC]
RewriteRule (.*) https://example.net/$1?user=%1 [R=301,L]

0 个答案:

没有答案