0

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

4

1 回答 1

1

使用来自ApacheRedirect的指令。例如:

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

或重写规则:

RewriteEngine On
RewriteBase /
RewriteRule ^carbooking$ http://anvi.hostoi/cars [L]
于 2013-02-05T17:05:09.237 回答