Using .Htaccess url redirection

2019-03-05 15:22发布

问题:

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]