Using .Htaccess url redirection

被刻印的时光 ゝ 提交于 2019-12-20 07:18:58

问题


I want to rewrite my url but i cant do proper way.

mysitename.net/index.php?title=Category:Public_Companies&pagefrom=8 

To :

mysitename.net/Category:Public_Companies/8          

How can i do that.


回答1:


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]


来源:https://stackoverflow.com/questions/23404495/using-htaccess-url-redirection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!