本文介绍了使用的.htaccess URL重定向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要重写我的网址,但我不能做正确的方式。
I want to rewrite my url but i cant do proper way.
mysitename.net/index.php?title=Category:Public_Companies&pagefrom=8
要:
mysitename.net/Category:Public_Companies/8
我怎样才能做到这一点。
How can i do that.
推荐答案
如果您有其他的页面比范畴,我建议使用这样的:
If you have other pages than Category, I recommend to use this:
RewriteRule ^Category:(.+)/(.+)$ /index.php?title=Category:$1&pagefrom=$2 [L]
另外,使用这样的:
Otherwise, use this:
RewriteRule ^(.+)/(.+)$ /index.php?title=$1&pagefrom=$2 [L]
这篇关于使用的.htaccess URL重定向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!