peace_love
peace_love

Reputation: 6471

How can I show a different url in the address bar?

My webpage url is for example

www.animalfarm.com/animals/horses.html

Is it possible to show in the address bar instead:

horses.animalfarm.com

I coudn't find any tutorial or help page for this issue. I know that it is working with the text behind the .com/ (friendly URL rewriting) but I do not know if this works also with changing www to a subdomain.

I would be really happy if you could help!

Upvotes: 2

Views: 10499

Answers (1)

Super1337
Super1337

Reputation: 226

For any pages on your site with links you would need to change them to link to horses.animalfarm.com.

For the html file on www.animalfarm.com/animals/horses.html, you could simply redirect them using the following line in your html

<meta http-equiv="refresh" content="0; url=http://horses.animalfarm.com/" />

Upvotes: 1

Related Questions