我创建了子域但是它重定向到主域。例如:我的域名是mydomain.com,我创建了子域test.mydomain.com但问题是,当打开子域名时,它总是重定向到mydomain.com。我想停止这种重定向。这是.htaccess文件文本。
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
答案 0 :(得分:0)
我遇到了同样的问题并用此作为我的.htaccess文件文本解决了它:
Options +FollowSymlinks
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]