Apache - rewrite jpg to URL with .htaccess

前端 未结 2 508
暖寄归人
暖寄归人 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:45

    RewriteCond is totally redundant here, you can match this pattern in RewriteRule itself. Try this rule:

    RewriteEngine On
    RewriteBase /
    
    RewriteRule ^up/(.+?\.jpe?g)$ file?name=$1 [NC,QSA,L]
    

    Also you may not need R=301 here since you don't want to expose your internal handling of image to clients.

提交回复
热议问题