当我将图像热链接以从另一个网站内联显示时,它会在短时间内显示正常,然后消失以显示损坏的图像。大约60%的图像都是这种情况。此链接显示了我的问题的前后:
我一直在阅读它,很多建议是改变我的.htaccess文件,如下所示:
<IfModule mod_rewrite.c>
RewriteEngine On
# Certain hosts may require the following line.
# If vanilla is in a subfolder then you need to specify it after the /.
# (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
</IfModule>
任何建议都会受到极大的赞赏。谢谢!