A while ago I disabled caching in .htaccess for development purposes, but now I'm getting 503 errors in the console when images and style sheets are being loaded. How do I fix this?
My .htaccess:
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"
# For security reasons, Option followsymlinks cannot be overridden.
# Options +FollowSymlinks
Options +SymLinksIfOwnerMatch
RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /$1.php [L,QSA]
RewriteRule ^([^/.]+)/?$ $1.php
My .htaccess:
Header set Cache-Control "max-age=0, private, no-cache, no-store, must-revalidate"
# For security reasons, Option followsymlinks cannot be overridden.
# Options +FollowSymlinks
Options +SymLinksIfOwnerMatch
RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ /$1.php [L,QSA]
RewriteRule ^([^/.]+)/?$ $1.php