重写规则不起作用

发布于 2024-11-08 07:15:17 字数 353 浏览 0 评论 0原文

我试图在我的 httpd.conf 文件中添加重写规则,但它不起作用。

以下是相关部分:

RewriteRule ^/taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301, L]

目前,我的网站名称是 www.domain.com,我正在尝试将所有以 taxonomy/term/{integer} 开头的 URL 重定向到我的新域 www.example.com通过 httpd.conf RewriteRule

I am trying to add a rewrite rule in my httpd.conf file but it's not working.

Here's the relevant section:

RewriteRule ^/taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301, L]

Currently, my site name is www.domain.com and I am trying to redirect all the URLs starting with taxonomy/term/{integer} to my new domain www.example.com through an httpd.conf RewriteRule.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最近可好 2024-11-15 07:15:17

阿帕奇一定抱怨过:

RewriteRule:错误的标志分隔符

删除标志中的空格。将其更改

[R=301, L]

为:

[R=301,L]

注意:如果您在每个目录的 htaccess 文件中使用该规则,则需要省略前导斜杠:

RewriteRule ^taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301,L]

Apache must have complained about:

RewriteRule: bad flag delimiters

Remove the white space in your flags. Change this:

[R=301, L]

to:

[R=301,L]

Note: if you're using the rule inside a per-directory htaccess file, you need to omit the leading slash:

RewriteRule ^taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301,L]
沉溺在你眼里的海 2024-11-15 07:15:17

删除开头的斜杠:

 RewriteRule ^taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301, L]

Remove the beginning slash:

 RewriteRule ^taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301, L]
桃扇骨 2024-11-15 07:15:17

在 httpd.conf 中尝试一下(删除空格,不要删除斜杠):

RewriteEngine on
RewriteRule ^/taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301,L]

Try this in httpd.conf (remove the space, don't remove the slash):

RewriteEngine on
RewriteRule ^/taxonomy/term/([0-9]+)$ http://www.example.com/taxonomy/term/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文