tibi-docs/frontend/.htaccess

20 lines
735 B
ApacheConf
Raw Normal View History

2023-02-21 13:36:06 +01:00
AddType application/javascript .mjs
2024-03-11 18:14:31 +01:00
#DirectoryIndex spa.html
# notwendig, da sonst über normale url spa.html aufgerufen wird, muss nur datei name sei, der nicht existiert
2023-02-21 13:36:06 +01:00
DirectoryIndex noindex
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
2024-03-11 18:14:31 +01:00
RewriteRule ^/?api/(.*)$ http://tibi-server:8080/api/v1/_/tibi_starter/$1 [P,QSA,L]
2023-11-15 08:00:12 +01:00
2023-02-21 13:36:06 +01:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
2024-03-11 18:14:31 +01:00
# leitet initale request an backend und nicht an spa.html weiter
RewriteRule ^/?(.*)$ http://tibi-server:8080/api/v1/_/tibi_starter/ssr?token=owshwerNwoa&url=/$1 [P,QSA,L]
# standardmäßig wegen deeplink aus google notwendig, da sonst 404
2023-02-21 13:36:06 +01:00
#RewriteRule (.*) /spa.html [QSA,L]
</ifModule>