Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions frontend/httpd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ LoadModule rewrite_module modules/mod_rewrite.so
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
RewriteRule ^ - [L]

# Rewrite all other requests to index.html
RewriteRule ^(.*)$ /index.html [L]
# If the requested resource doesn't exist, use index.html
RewriteRule ^ /index.html
</IfModule>

SSLProxyEngine On
Expand Down Expand Up @@ -500,6 +500,7 @@ LogLevel warn
AddType application/x-gzip .gz .tgz
AddType application/wasm .wasm
AddType application/javascript .js
AddType text/javascript .js
#
# AddHandler allows you to map certain file extensions to "handlers":
# actions unrelated to filetype. These can be either built into the server
Expand Down
Loading