我在Apache服务器上有一个网上商店作为网站的一部分,可以通过以下URL进行访问:
http://www.example.com/webshop
从该URL派生出一堆URL,例如:
http://www.example.com/webshop/tops/
http://www.example.com/webshop/tops/sweatshirts
http://www.example.com/webshop/tops/t-shirts
http://www.example.com/webshop/bottoms/
http://www.example.com/webshop/bottoms/shorts
http://www.example.com/webshop/bottoms/jeans
...
我想注册一个域(例如:examplewebshop.com)并为网站URL的webshop部分配置它,以便它能够显示http://www.example.com/webshop/的内容而无需重定向。所以例如这些:
http://www.example.com/webshop/tops/sweatshirts
http://www.example.com/webshop/bottoms/shorts
可以通过以下网址访问
http://www.examplewebshop.com/tops/sweatshirts
http://www.examplewebshop.com/bottoms/shorts
也是。
这可以实现吗? 如果是,是.htaccess + RewriteRules还是其他?