当前位置: 代码迷 >> PHP >> 求一条apache地址重写则规解决方案
  详细解决方案

求一条apache地址重写则规解决方案

热度:173   发布时间:2016-04-28 18:51:11.0
求一条apache地址重写则规
求一条apache地址重写则规
1、当在url输入http://xx.aaa.com时访问http://xx.aaa.com/xx/index.html
      当在url输入http://yy.aaa.com时访问http://yy.aaa.com/yy/index.html
------解决方案--------------------
RewriteCond %{HTTP_HOST} ^([^\.]+).aaa.com$
RewriteRule ^(/?)(.*)$ /%1/index.html [PT,L]

------解决方案--------------------
引用:
RewriteCond %{HTTP_HOST} ^([^\.]+).aaa.com$
RewriteRule ^(/?)(.*)$ /%1/index.html [PT,L]


+1
  相关解决方案