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
精彩评论