How can I add something in JavaScript that will check the website URL of someone on a web site and then redirect to a certain page on the website, if a match is found? for example...
the string we want to check for, will be mydirectory
, so if someone went to mysite.com/mydirectory/anyfile.php
or even mysite.com/mydirectory/index.php
JavaScript would then redirect their page / url to mysite.com/index.php
because it has mydirectory
in the URL, how can I do that using JavaScript?