0

当文件夹和任何子文件夹被重定向到新的 url 时,我需要有关如何使用 htaccess 的帮助。

示例:http:www.mysite.com/events/a-name-of-an-event('a-name-of-an-event' 会有所不同)

http:www.mysite.com/fixtures/

4

1 回答 1

0

您可以在文件中使用RedirectMatch指令:DOCUMENT_ROOT/.htaccess

RedirectMatch 301 ^/events/ /fixtures/

或使用mod_rewrite

RewriteEngine On
RewriteRule ^events/ /fixtures/ [L,R=301,NC]
于 2013-11-08T09:16:03.603 回答