.htaccess image to web page redirect?

删除回忆录丶 提交于 2019-12-02 08:19:27

put this in your .htaccess, it will redirect all requests that are sent directly by user.
Note: Other sites,as you mentioned can put your images in their pages.

RewriteCond %{REQUEST_URI}  ^/uploads/(\d+)-(.+)\.(png|gif|jpe?g|bmp)$  [NC]
RewriteCond %{HTTP_REFERER} ^$
RewriteRule (.*)  http://www.sitename.com/view/%1-%2/

Yes you can always redirect images to a webpage or anything using .htaccess. But images/(\d+).*\.jpg may be better.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!