mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 10:35:16 +01:00
Remove 404 errors from apache configuration
parent
a540a92889
commit
6ee1ce812c
@ -46,6 +46,7 @@ server {
|
||||
|
||||
## Apache
|
||||
I am not using Apache and i have not tested this myself, but here is a solution from [@kencinder](https://github.com/kencinder) as an example configuration:
|
||||
Tested and modified by @Chicken
|
||||
```apache
|
||||
DocumentRoot /var/www/
|
||||
<Directory /var/www/>
|
||||
@ -60,7 +61,14 @@ DocumentRoot /var/www/
|
||||
# without it, Content-Type will be "application/x-gzip"
|
||||
RewriteCond %{HTTP:Accept-Encoding} \b(x-)?gzip\b
|
||||
RewriteCond %{REQUEST_FILENAME}.gz -s
|
||||
RewriteRule ^(.+) $1.gz [L]
|
||||
RewriteRule ^(.+) $1.gz
|
||||
|
||||
# Check if file doesn't exists
|
||||
RewriteCond %{REQUEST_FILENAME} !-s
|
||||
RewriteCond %{REQUEST_FILENAME} !-l
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
# Rewrite request to emptyTile
|
||||
RewriteRule ^.*$ /assets/emptyTile.json [L]
|
||||
|
||||
# Also add a content-encoding header to tell the browser to decompress
|
||||
<FilesMatch .gz$>
|
||||
|
Loading…
Reference in New Issue
Block a user