我有以下网址www.abc.xyz.com,重定向到www.xyz.com/abc,我正在尝试创建一个htaccess文件,将网址保持为www.abc.xyz.com,但我是无法使用以下文件
RewriteEngine on
RewriteCond %{HTTP_HOST} ^abc.xyz.com [NC]
RewriteRule ^/(.*)$ /abc/$1 [L]
我在这里做错了什么?
答案 0 :(得分:0)
在DocumentRoot/.htaccess
:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?abc\.xyz\.com$ [NC]
RewriteRule ^((?!abc/).*)$ abc/$1 [L,NC]