我创建了一个外卡域。
我的产品页面网址是:
http://www.example.com/add/productdetails/city/product_title/Product_ID
我想将以上网址重写为:
http://www.city.example.com/add/productdetails/product_title/Product_ID
以城市名称作为子域。
请帮我配置重写规则网站在codeigniter
答案 0 :(得分:0)
在.htaccess文件中添加此代码
RewriteCond %{HTTP_HOST} ^example\.com$
RewriteRule ^/?$ "http\:\/\/city\.example\.com\/" [R=301,L]