.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将根目录重定向到子目录的主要内容,如果未能解决你的问题,请参考以下文章

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

htaccess 将子目录重定向到另一个子目录

.htaccess - 将所有 URL + 现有目录重定向到 index.php

htaccess 将目录名重定向到参数

将所有子目录页面重定向到 .htaccess 中的新域主页

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