【发布时间】:2022-01-02 14:51:49
【问题描述】:
我正在尝试像这样批量重定向我的站点链接,我需要从每个链接中删除主页并将其重定向到根目录,如下所示。
example.com/home/hello-world.
example.com/home/tag/world.
到
example.com/hello-world
example.com/tag/world.
我正在使用这些代码
RewriteEngine On
RewriteCond %{REQUEST_URI} (.+)/home(.*)$
RewriteRule ^ %1/ [R=301,L]
【问题讨论】:
-
您在“一些”示例 URL 的末尾有一个点 - 这很重要吗?
标签: .htaccess url redirect mod-rewrite http-status-code-301