0

我有带有子目录的域名,我想将其重定向到根文件夹。例如,当用户访问这里时example.com/contact,我想重定向到example.com. 目前是我要重定向example.com到的 htaccess 代码www.example.com

# Redirect non-www urls to www
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
4

1 回答 1

0

尝试这个:

RewriteEngine On
RewriteBase /

RewriteRule ^subdir/(.*)$ http://www.example.com/$1 [L,R=301]
于 2013-09-13T07:23:45.983 回答