Home >php教程 >PHP开发 >How to force jpg, js, css and other resources to connect, if they do not exist, directly 404 without rewriting

How to force jpg, js, css and other resources to connect, if they do not exist, directly 404 without rewriting

高洛峰
高洛峰Original
2016-11-24 13:48:001246browse

怎么强制jpg,js,css等连接资源,如果不存在就直接404而不重写
我在本机架设了个网站
http://www.laji.com
网站文件夹下有2个文件,
.htaccess文件:

Options +FollowSymLinks -MultiViews<br>
RewriteEngine on<br>
RewriteBase /<br>
<br>
# All other pages<br>
# Don&#39;t rewrite real files or directories<br>
RewriteCond %{REQUEST_FILENAME} !-f<br>
RewriteCond %{REQUEST_FILENAME} !-d<br>
RewriteCond %{REQUEST_URI} !^.*(\.<a href="http://www.php1.cn/category/72.html">css</a>|\.js|\.gif|\.png|\.jpg|\.jpeg)$<br>
RewriteRule ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]<br>

index.php

<?php echo $_GET[&#39;main_page&#39;] ?>

 我使用http://www.laji.com/xxx.jpg (这个图片不存在),为什么还是被重写指向

http://www.laji.com/index.php?main_page=xxx.jpg?
怎么强制jpg,js,css等连接资源,如果不存在就直接404而不重写

分享到:


------解决方案--------------------
-s判断请求的文件是否是一个存在的非空文件;判断不是可以用:!-s

<br>
RewriteCond %{REQUEST_FILENAME} !-s  <br>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn