Forum Moderators: phranque

Message Too Old, No Replies

About RewriteRule

help me pls.

         

NothingElse

12:28 am on Jun 25, 2005 (gmt 0)



Hi, my .htaccess file is ;

*****
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)\_pro_download.html$ /index.php?mp3=$1
RewriteRule (.*)\_pro_download_now.html$ /download.php?mp3=$1
******
Forexample;

Kej%20doglu_pro_download.html is my file. But I dont want to %20, I wanna replace with "+".

Example;

Kej+doglu_pro_download.html

Please help me, thanks

vincevincevince

12:32 am on Jun 25, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I can't figure the specifics now but the trick for this is to match a single space and turn it into a +


^([^ ]*)( )([^ ]*)$ $1+$3

It should be recursive (but that doesn't really hurt)