网站一些资源文件 js css image 这些都是重定向访问的话,会造成资源浪费吗。

.htaccess 

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

RewriteEngine On

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

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>

任何访问都直接定向index.php,
那在加载JS,CSS,IMAGE也去访问index.php然后再定位到么个文件件返回,会造成额外的资源开销吗。这个开销大吗,有什么方法可以避免这种开销吗。
已邀请:

安正超

赞同来自: wuangv FiveSay

你应该去查一下这两句是什么意思:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

然后就不会这样问了。

要回复问题请先登录注册