deus-gaming/.htaccess
2020-02-16 18:30:39 -05:00

20 lines
408 B
ApacheConf

AddCharset utf-8 .shtml .html .css .php .txt .js
# Disable caching of CSS and JS (for testing only).
<filesMatch ".(css|js)$">
Header set Cache-Control "max-age=0, public"
</filesMatch>
Options +Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
DirectoryIndex index.shtml
RewriteEngine On
RewriteBase /
RewriteRule ^(.+?)index\.html$ $1index.shtml [QSA,L]
RewriteRule \.php - [NC,F,L]