Hello all,
I want to change my current url to a modified one. suppose my current url is www.abc.com/xyz/location.htm i want it to change to www.abc.com/location.htm
please suggest a suitable way.... Thanks in advance
Hello all,
I want to change my current url to a modified one. suppose my current url is www.abc.com/xyz/location.htm i want it to change to www.abc.com/location.htm
please suggest a suitable way.... Thanks in advance
If you are running Apache servers, I'd suggest using mod_rewrite.
In that case you should have something like this in your .htaccess
-file at the top level of your server root:
RewriteEngine on
RewriteRule ^abc.com/xyz/(.*)$ <your_root_directory>/$1