我使用以下的密码。
. 根文件夹中的 ht 访问权限
#for redirecting www to non-www
RewriteCond %{HTTP_HOST} ^www.(.*)
RewriteRule (.*) http://%1/$1 [R=301,L]
#temporary redirect root to dir/
RedirectMatch ^/$ /dir/
. 在目录文件夹中的 ht 访问权限
RewriteEngine on
#for changing index file to a custom one
DirectoryIndex abc.php?tag=ho
#for simple url
RewriteRule ^what/([^/]*).html$ /dir/abc.php?tag=$1 [L]
现有代码www.domain.com 改用域名.com,但www.domain.com/dir/没有改用。
我需要修正两件事:
- Redirect www to non wwww
- Redirect domain.com to domain.com/dir/
请指引我