wade.sop.wtf/.htaccess

19 lines
385 B
ApacheConf
Raw Normal View History

2023-01-25 19:05:08 -08:00
ErrorDocument 404 /page/404.html
ErrorDocument 403 /page/403.html
#SymLinks Start
RewriteEngine On
RewriteRule ^403$ /page/403.html
RewriteRule ^404$ /page/404.html
#SymLinks End
#Allow FILES
<Files ~ (LICENSE|README.md)$>
Order allow,deny
Allow from all
2023-08-29 19:41:20 -07:00
</Files>
#Allow FILES
<Files ~ (.scss)$>
Order allow,deny
deny from all
</Files>