.htaccess将根目录重定向到子目录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess将根目录重定向到子目录相关的知识,希望对你有一定的参考价值。
I found this useful. Works as expected.
Options +FollowSymlinks RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule (.*) http://www.example.com/$1 [R=301,L] RewriteRule ^$ store [L] #If you want an external redirect, set the R flag there as well #RewriteRule ^$ /store [L,R=301]
以上是关于.htaccess将根目录重定向到子目录的主要内容,如果未能解决你的问题,请参考以下文章