Answer the question
In order to leave comments, you need to log in
How to configure htaccess redirect to one page, but with saving the address?
So it goes.
I need this for react, so that index.html always opens, and all address parameters remain for reading.
I googled the express setup, webpack-server, and apache seems to be not used anywhere.
Answer the question
In order to leave comments, you need to log in
<IfModule mod_rewrite.c>
RewriteEngine on
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [L]
</IfModule>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question