How do I redirect all folders to my index.html and determine where users came from.
Firstly I have only index.html
and .htaccess
files.
Scenario:
- User click to link:
mydomain.com/blabla
(normally goes to 404) - Web site redirect to user
mydomain.com/index.html
ormydomain.com/index.html?par=blabla
- in
mydomain.com/index.html
show alert "came frommydomain.com/blabla
"
Is this possible? Thanks.
UPDATE**********
I found solve like this.
Firstly changed .htaccess file: https://stackoverflow.com/a/21663207/1173413
and use alert(window.location);
as Polostor's said.