0

如何重定向两个特定文件夹但保持子文件夹不变?

例如


刻字 > 重定向到根目录 (mysite.com)

  • subfolder1 > 保持不变
  • subfolder2 > 保持不变

类型 > 重定向到根目录 (mysite.com)

  • subfolder1 > 保持不变
  • subfolder2 > 保持不变
4

1 回答 1

2

使用 mod_alias:

RedirectMatch ^/lettering/?$ /
RedirectMatch ^/type/?$ /

使用 mod_rewrite:

RewriteEngine On
RewriteRule ^/?lettering/?$ / [L,R]
RewriteRule ^/?type/?$ / [L,R]

这将重定向对http://mysite.com/lettering/to的请求http://mysite.com/,但不会重定向http://mysite.com/lettering/subfolder2/.

于 2012-12-07T04:37:03.623 回答