There is a picture http://kartinka.com.ua/images/2_mainpage.png
Is it possible using .htaccess or php to make it visible at http://ΠΌΠΎΠΉΡΠ°ΠΉΡ.ΠΊΠΎΠΌ/img/2_mainpage.png ?
Yes it is possible. Here is the simplest example:
Content .htaccess :
RewriteEngine On RewriteRule ^images/2_mainpage.png$ /test.php [L] Content test.php :
<?php header("Content-Type: image/png"); echo file_get_contents('http://kartinka.com.ua/images/2_mainpage.png'); Source: https://ru.stackoverflow.com/questions/559978/
All Articles