tags:

views:

23

answers:

2

I have given my client a domain like www.xyz.com/test.

Now for some reason I want to change it to www.xyz.com/testing but I want that client will continue to type www.xyz.com/test.

How can I do it?

+2  A: 

You can setup a HTTP 301/302 redirect from /test to /testing.

Anton Gogolev
A: 

Well, if you're on an Apache server you should be able to use an htaccess file to route the URL to the actual location on your server. There's a couple of ways of creating 301/302 redirects, such as a plain RewriteRule that routes all calls to "xyz.com/testing/..." to the actual location on the server, "xyz.com/test/...".

Good luck! =)

manbeardpig