.htaccess rewrite image url

Discussion in 'Apache' started by abyse, Mar 15, 2013.

  1. #1
    Hi, how can I rewrite a dynamic image url?

    This:
    http://www.hdmusicvideos.info/yapi.php?path=http://www.hdmusicvideos.info/thumbs/mc-yankoo-ne-zovi-me-ft-dj-mladja.jpg
    
    Code (markup):
    To this:
    http://www.hdmusicvideos.info/resized/thumbs/mc-yankoo-ne-zovi-me-ft-dj-mladja.jpg
    Code (markup):
    or to this:
    http://www.hdmusicvideos.info/resized/mc-yankoo-ne-zovi-me-ft-dj-mladja.jpg
    Code (markup):
     
    abyse, Mar 15, 2013 IP
  2. merlin77

    merlin77 Active Member

    Messages:
    54
    Likes Received:
    3
    Best Answers:
    2
    Trophy Points:
    78
    #2
    Try this
    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule ^(.*)\yapi.php$ $1
    RewriteCond %{QUERY_STRING} ^path=http://www.hdmusicvideos.info/(.*)$ [NC]
    RewriteRule ^(.*)$ $1/%1? [R=301,L,NE]
    Code (markup):
     
    merlin77, Mar 15, 2013 IP
  3. abyse

    abyse Notable Member

    Messages:
    346
    Likes Received:
    9
    Best Answers:
    1
    Trophy Points:
    245
    #3
    abyse, Mar 15, 2013 IP
  4. merlin77

    merlin77 Active Member

    Messages:
    54
    Likes Received:
    3
    Best Answers:
    2
    Trophy Points:
    78
    #4
    Whoops didn't see that, here ya go -
    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule ^(.*)\yapi.php$ $1
    RewriteCond %{QUERY_STRING} ^path=http://www.hdmusicvideos.info/thumbs/(.*)$ [NC]
    RewriteRule ^(.*)$ resized$1/%1? [R=301,L,NE]
    Code (markup):
    will output -
    http://www.hdmusicvideos.info/resized/mc-yankoo-ne-zovi-me-ft-dj-mladja.jpg

    while
    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule ^(.*)\yapi.php$ $1
    RewriteCond %{QUERY_STRING} ^path=http://www.hdmusicvideos.info/(.*)$ [NC]
    RewriteRule ^(.*)$ resized$1/%1? [R=301,L,NE]
    Code (markup):
    will output -
    http://www.hdmusicvideos.info/resized/thumbs/mc-yankoo-ne-zovi-me-ft-dj-mladja.jpg
     
    merlin77, Mar 15, 2013 IP