文章上传图片不显示

请先 登录 后评论

1 个回答

安臣

1、当链接为伪静态链接时,图片显示不了。

attachments-2016-12-99ZuO1O2584641eec669


2、当链接为真实链接时,即带有index.php时,图片却可以显示。

attachments-2016-12-YjdTfvTP584642a63c69


请问这是什么问题,我用的是apache。

伪静态规则用官方的。

如下:

<IfModule mod_rewrite.c>

    <IfModule mod_negotiation.c>

        Options -MultiViews

    </IfModule>


    RewriteEngine On


    # Redirect Trailing Slashes If Not A Folder...

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)/$ /$1 [L,R=301]


    # Handle Front Controller...

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^ index.php [L]

</IfModule>





请先 登录 后评论