奇怪的301重定向问题

发布于 2024-08-30 18:49:29 字数 214 浏览 4 评论 0原文

我正在尝试将所有以“/?page=”开头的 URL 重定向到“/stuff/?page=”

我的 .htaccess 文件中有此内容:

RewriteEngine on 
RedirectMatch 301 ^/?page=/(.*)$ http://www.mysite.com/stuff/$1

但它不起作用..我做错了什么?

I'm trying to redirect all URLs that start with "/?page=" to "/stuff/?page="

I have this in my .htaccess file:

RewriteEngine on 
RedirectMatch 301 ^/?page=/(.*)$ http://www.mysite.com/stuff/$1

But it's not working.. What am I doing wrong?

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

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

发布评论

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

评论(2

灼疼热情 2024-09-06 18:49:29

试试这个

RewriteRule ^/stuff/?page=$ /?page=/

请记住,您实际上是将(空间的)右侧变成了左侧。

Try this

RewriteRule ^/stuff/?page=$ /?page=/

Remember, you're effectively turning the right (of the space) into the left.

夜雨飘雪 2024-09-06 18:49:29

mod_alias 的指令(其中之一是 RedirectMatch) 仅适用于 URI 路径 而不是查询。如果您想检查查询,请使用 mod_rewrite 代替:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^page=
RewriteRule ^$ /stuff/ [L,R=301]

The directives of mod_alias (one of them is RedirectMatch) do only work on the URI path and not the query. If you want to inspect the query, use mod_rewrite instead:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^page=
RewriteRule ^$ /stuff/ [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文