当文件夹和任何子文件夹被重定向到新网址时,我需要有关如何使用htaccess的帮助。
示例:http:www.mysite.com/events/a-name-of-an-event('a-name-of-an-event'会有所不同)
到
HTTP:www.mysite.com/fixtures /
答案 0 :(得分:0)
您可以在RedirectMatch
文件中使用DOCUMENT_ROOT/.htaccess
指令:
RedirectMatch 301 ^/events/ /fixtures/
或使用mod_rewrite
:
RewriteEngine On
RewriteRule ^events/ /fixtures/ [L,R=301,NC]