开发者

How to use mod_rewrite to change this url http://outis-music.com/#url=http%3A//outis-music.com/podcast-2/?

开发者 https://www.devze.com 2023-03-23 03:22 出处:网络
I need to change urls like this one http://outis-music.com/#url=http%3A//outis-music.com/podcast-2/ to eliminate this part /#url=http%3A//开发者_运维问答outis-music.com

I need to change urls like this one http://outis-music.com/#url=http%3A//outis-music.com/podcast-2/ to eliminate this part /#url=http%3A//开发者_运维问答outis-music.com

Thank you in advance!


untested code, however you are just running a regular expression search and replace on the url string.

RewriteRule (\/#url=http%3A\/\/outis\-music.com)$ [L]

good reading:

-mod_rewrite sytax

-Regex Reference

0

精彩评论

暂无评论...
验证码 换一张
取 消