本文介绍了htacces不是重定向正确的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有,htaccess的301重定向的一个问题,我试着重定向子页面?ID = 22音乐带。这是我尝试:
I have a problem with , htaccess 301 redirection, I try to redirect subpage ?id=22 to music-band.This is what I try:
RewriteEngine On
RewriteCond ^http://www.mywebsite.pl/?id=22
RewriteRule ^(.*)$ http://www.mywebsite.pl/music-band/$1 [R=301,L]
什么即时做错了什么?
What Im doing wrong ?
推荐答案
尝试:
RewriteEngine On
RewriteCond %{THE_REQUEST} \ /+\?id=22($|&|\ )
RewriteRUle ^ /music-band/? [L,R=301]
RewriteRule ^music-band/?$ /?id=22 [L]
这篇关于htacces不是重定向正确的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!