正则表达式消除 URL 重写 dup 文件夹上的查询字符串

发布于 2024-11-04 17:22:46 字数 448 浏览 0 评论 0原文

我将整个文件夹重定向到其上方的重复文件夹中。我启用了 mod_rewrite,我可以在 .htaccess 中放入什么类型的正则表达式来删除下面 URL 中的: ?q=dup_folder/inspection11.htm ?文件夹中有多个文件,名称各异。

.htaccess 中的重定向代码:

Redirect 301 /dup_folder/ http://www.example.biz/

它重定向到:

http://www.example.biz/inspection11.htm?q=dup_folder/inspection11.htm

但我希望它重定向到:

http://www.example.biz/inspection11.htm

I'm redirecting an entire folder into the duplicate folder above it. I have mod_rewrite enabled, what type of regular expression could I put in .htaccess to get rid of the: ?q=dup_folder/inspection11.htm from the URL below? There are multiple files in the folder with various names.

Redirect Code in .htaccess:

Redirect 301 /dup_folder/ http://www.example.biz/

It redirects to:

http://www.example.biz/inspection11.htm?q=dup_folder/inspection11.htm

But I want it to redirect to:

http://www.example.biz/inspection11.htm

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

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

发布评论

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

评论(2

花落人断肠 2024-11-11 17:22:46

将这些行放入您的 .htaccess 文件中:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^dup_folder/?$ http://www.example.biz/inspection11.htm? [R=301,L,NC]

重要的是要以 ? 结束重定向 URL,以消除原始 URI 中可能存在的任何查询字符串,例如 dup_folder/?foo=bar 将被重定向到 http://www.example.biz/inspection11.htm,并丢弃原始查询字符串 foo=bar

NC 此处用于忽略大小写比较

Put these lines in your .htaccess file:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^dup_folder/?$ http://www.example.biz/inspection11.htm? [R=301,L,NC]

It is important to end redirected URL with ? to get rid of any query string you may have in original URI like dup_folder/?foo=bar will be redirected to http://www.example.biz/inspection11.htm discarding the original query string foo=bar.

NC is used for ignore case comparison here

上课铃就是安魂曲 2024-11-11 17:22:46
RewriteEngine on
RewriteRule ^/dup_folder/$ http://www.example.biz/inspection11.htm [r=301,l]
RewriteEngine on
RewriteRule ^/dup_folder/$ http://www.example.biz/inspection11.htm [r=301,l]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文