0

假设我有一个名为“something.in”的域..其中还有多个文件夹(购买,旅游等)..在索引页面上有各种链接,如购买,旅游等....

发生的事情是,当我点击购买时,网址正在导航到 something.in/buy(foldername)/some-buy

我希望它像 buy.something.in

是的,stackoverflow 本身中已经存在许多类似的相关主题......但我需要知道必须进行哪些更改,所以这只发生在点击链接时它应该导航为“foldername.something.in/some-购买”。使用 .htaccess ..

在其他方面,它可以简单地说为点击时漂亮的 URL...

提前致谢

4

2 回答 2

1

你为什么不把正确的网址放在你的购物页面开始呢?

代替

<a href="/buy/product?id=foo">

<a href="http://buy.example.com/product?id=foo">
于 2013-08-02T14:12:34.753 回答
0

在你的根 .htaccess

RewriteEngine on
RewriteRule /(\w+)/(.*) http://$1.something.in/$2 [R=301,L]
于 2013-08-02T14:09:57.707 回答