wm-fontis-tibi-2023/frontend/.htaccess

20 lines
729 B
ApacheConf
Raw Normal View History

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