How to add a custom word to my domain URL for every request?
Consider my domain name is www.mydomain.com Consider a page request www.mydomain.com/user/register I want to add a custom word after base URL for every request inside mydomain.com.example www.mydomain.com/customword/ www.mydomain.com/customword/user/register Can we do this using URL rewriting in htaccess file ? Actually it should execute 'www.mydomain.com/user/register' internally...but externally the URL should look like www.mydomain.com/customword/user/register. You could create the directory "register", and put an index file inside it that performs the action. That's probably the simplest