-3
我在我的index.php
頁面有一個圖像。點擊圖片我必須重定向URL
到another Domain
使用.htaccess
重定向。.htaccess在php中重定向
我在我的index.php
頁面有一個圖像。點擊圖片我必須重定向URL
到another Domain
使用.htaccess
重定向。.htaccess在php中重定向
試試這個
HTML代碼
<a href="http://yourdomain.com/img.jpg" target="_blank"><img src="foldername/img.jpg" alt="image" height="10px" width="25px">
</a>
的.htaccess CODE
RewriteRule ^img.jpg$ http://example.com/ [R=301,L]