403错误和浏览器缓存

时间:2017-07-31 18:30:15

标签: laravel caching

我们在Linux服务器上运行Laravel应用程序作为后端。 有时,重新加载页面时,服务器会返回403错误。

如果我清除浏览器缓存,此问题就解决了,但使用该应用程序不到1分钟,再次出现403错误。

/public/.htaccess档案:

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

RewriteEngine On
DirectoryIndex index.php # This line does the trick

# 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]

# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] </IfModule> 

关于它的任何线索?

0 个答案:

没有答案