使用htaccess将Point / Redirect子目录指向另一个文件夹

时间:2016-06-30 07:33:51

标签: apache .htaccess redirect url-redirection

我正在使用apache服务器来管理我的服务器。有没有办法指出

  1. xyz.com/blog到文件夹/ p​​ublic_html / blog /
  2. xyz.com到文件夹/ p​​ublic_html / xyz /
  3. 感谢。

1 个答案:

答案 0 :(得分:0)

您可以在/public_html/.htaccess中尝试这些规则:

RewriteEngine On

RewriteRule ^(blog|beta)(/.*)?$ - [L,NC]

RewriteRule !^xyz/ xyx%{REQUEST_URI} [L,NC]