单击文件夹作为子域

时间:2013-08-02 14:05:51

标签: php .htaccess

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

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

我希望它像buy.something.in

是的,stackoverflow本身已经存在许多类似的相关主题.... 但我需要知道必须做出哪些更改,所以这只会在点击链接时发生,它应该导航为“foldername.something.in/some-buy".using .htaccess ..

以其他方式可以简单地在点击时简单地称为PRETTY URL ...

提前致谢

2 个答案:

答案 0 :(得分:1)

为什么不直接在购物页面中放置正确的网址?

而不是

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

<a href="http://buy.example.com/product?id=foo">

答案 1 :(得分:0)

在你的根.htaccess

RewriteEngine on
RewriteRule /(\w+)/(.*) http://$1.something.in/$2 [R=301,L]