重定向我的横幅后没有显示

时间:2015-10-11 14:34:47

标签: css css3 .htaccess

<div id="background"></div>
<style>
    #background{
        background-image: url('/banner.png');
        background-size: contain;
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
    }
</style>

所以这是我的构造文件,我希望每个人都可以访问我的网站,这是我的htaccess

Options ALL -Indexes

RewriteEngine On
RewriteCond %{REMOTE_ADDR} !=1.3.3.7
RewriteCond %{REQUEST_URI} !=/construction.php
RewriteRule .* /construction.php [L]

我还没有使用我的IP,因为我想测试它是如何找到访问我网站的人。

网站正确加载,图片路径正常,但网站仍为空白。

1 个答案:

答案 0 :(得分:1)

不重写图像:

RewriteEngine On
RewriteCond %{REMOTE_ADDR} !=1.3.3.7
RewriteCond %{REQUEST_URI} !=/construction.php
RewriteCond %{REQUEST_URI} !\.(?:gif|png|jpg|jpeg)$ [NC]
RewriteRule .* /construction.php [L]
相关问题