Apache - rewrite jpg to URL with .htaccess

前端 未结 2 527
暖寄归人
暖寄归人 2021-01-21 15:59

Hi im trying to do redirect from .jpg file to specific URL address but it don\'t work. Can sb help me?

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI}          


        
2条回答
  •  孤独总比滥情好
    2021-01-21 16:44

    Try this :

    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} ^/(.*)\.jpg [NC]
    RewriteRule ^up/(.*)\.jpg/?$ /file?name=$1.jpg [R=301,L]
    

提交回复
热议问题