php中的.htaccess重定向

时间:2013-07-29 07:27:19

标签: .htaccess

我的index.php页面中有一张图片。点击图片后,我必须使用URL重定向将another Domain重定向到.htaccess

1 个答案:

答案 0 :(得分:0)

试试这个

HTML CODE

    <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]