【发布时间】:2013-10-28 14:22:09
【问题描述】:
我的index.php 页面中有一张图片。点击图片后,我必须使用.htaccess 重定向将URL 重定向到another Domain。
【问题讨论】:
标签: .htaccess
我的index.php 页面中有一张图片。点击图片后,我必须使用.htaccess 重定向将URL 重定向到another Domain。
【问题讨论】:
标签: .htaccess
试试这个
HTML 代码
<a href="http://yourdomain.com/img.jpg" target="_blank"><img src="foldername/img.jpg" alt="image" height="10px" width="25px">
</a>
.HTACCESS 代码
RewriteRule ^img.jpg$ http://example.com/ [R=301,L]
【讨论】: