重定向到.htaccess中的另一个目录

Posted

tags:

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

This example shows you how to create redirection o another directory. It may be useful, for example, when you have a project, placed in sub-directory.
  1. # Redirect visitors to another directory
  2. RewriteEngine on
  3. RewriteCond %{REQUEST_FILENAME} !-f
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteRule ^([^?]*)$ /sub_dir/index.html [NC,L,QSA]

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

将请求从一个文件夹重定向到htaccess中的另一个文件夹

Htaccess 将所有文件从一个域中的子目录重定向到另一个域

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

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

使用 .htaccess 将所有子域和子目录重定向到索引页面

.htaccess 结合 301 重定向和 URI 重写