使用.htaccess更改网址

时间:2013-02-05 17:00:12

标签: .htaccess

我只想使用htaccess更改我网站的网址。请告诉我我是否可以改变 网址 “www.mysite.com/carbooking”至“www.mysite.com/cars”。 “www.mysite.com/avaibletickets”到“www.mysite.com/tickets”等等。

1 个答案:

答案 0 :(得分:1)

使用Apache中的Redirect指令。例如:

Redirect /carbooking http://www.mysite.com/cars

或重写规则:

RewriteEngine On
RewriteBase /
RewriteRule ^carbooking$ http://anvi.hostoi/cars [L]