重定向到一个目录,preserving查询字符串 [英] Redirect to a directory, preserving the query string

查看:94
本文介绍了重定向到一个目录,preserving查询字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

/ 具有查询字符串的任何请求导致404被触发。我发现,如果我添加一个 /店/ 的查询字符串之前,它被内部重定向,没有404被触发。

Any request for / that has a query string is causing a 404 to be triggered. I've found that if I add a /shop/ before the query string, it gets redirected internally and no 404 is triggered.

我需要一个通用的mod_rewrite规则,将采取一个URL的形式:

I need a general mod_rewrite rule that will take a URL in the form of:

http://www.example.com/?foo=bar

和重定向到:

http://www.example.com/shop/?foo=bar

在查询字符串(可以是任何东西)是preserved。

where the query string (could be anything) is preserved.

推荐答案

这将重定向(URL会改变)所有点击进入ROOT(如 HTTP:// WWW。 example.com / )的的查询字符串转换成 http://www.example.com/shop/

This will redirect (URL will change) all hits into ROOT (e.g. http://www.example.com/) that has query string into http://www.example.com/shop/.

RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} !^$
RewriteRule ^$ http://www.example.com/shop/ [QSA,R,L]

这将重写内部(URL会留在浏览器中一样)的所有点击进入ROOT(如 http://www.example.com/ )的的查询字符串转换成 http://www.example.com/shop/

This will rewrite internally (URL will stay the same in browser) all hits into ROOT (e.g. http://www.example.com/) that has query string into http://www.example.com/shop/.

RewriteEngine On
RewriteBase /

RewriteCond %{QUERY_STRING} !^$
RewriteRule ^$ /shop/ [QSA,L]

这篇关于重定向到一个目录,preserving查询字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆