.htaccess将根目录重定向到子目录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.htaccess将根目录重定向到子目录相关的知识,希望对你有一定的参考价值。

I found this useful. Works as expected.
  1. Options +FollowSymlinks
  2. RewriteEngine on
  3. RewriteCond %{HTTP_HOST} ^example.com$
  4. RewriteRule (.*) http://www.example.com/$1 [R=301,L]
  5. RewriteRule ^$ store [L]
  6.  
  7. #If you want an external redirect, set the R flag there as well
  8. #RewriteRule ^$ /store [L,R=301]

以上是关于.htaccess将根目录重定向到子目录的主要内容,如果未能解决你的问题,请参考以下文章