本文介绍了.htaccess中:如何重定向所有URL中包含"一个字QUOT;只有一个其他的网址是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我们有网址(其中包含 VVVVV 的)内。例如:
- http://www.example.com/ VVVVV 的
- http://www.example.com/ VVVVV 的 /
- http://www.example.com/ VVVVV 的 / SomePage的
- 的some-dir/vvvvv.php?arg=whatever
上述所有人员(含 VVVVV 的字内)将去:
- 的 http://www.google.com 的 ..只。整齐。 (到域而已。没有任何carryings /后)
如何使它在的.htaccess
吗?
解决方案
重写规则VVVVV http://www.google.com? [L,R = 301]
这应该这样做,我认为。该?
在目标网址的结尾表示不发送任何查询字符串。
Lets say we have the urls (which contains "vvvvv") inside. For example:
- http://www.example.com/vvvvv
- http://www.example.com/vvvvv/
- http://www.example.com/vvvvv/somepage
- http://www.example.com/some-dir/vvvvv.php?arg=whatever
All those above (containing "vvvvv" word inside) will be going to:
- "http://www.google.com" .. only. Neatly. (To a Domain ONLY. Without any carryings/ trailing)
How to make it in .htaccess
please?
解决方案
RewriteRule vvvvv http://www.google.com? [L,R=301]
That should do it I think. The ?
at the end of the destination URL means "don't send any query string".
这篇关于.htaccess中:如何重定向所有URL中包含"一个字QUOT;只有一个其他的网址是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!