我的本地服务器上有一个页面说http://172.16.2.6:8005/abc.html
,我希望测试人员在浏览器中看到http://tesing.com/abc.html
之类的其他网址。
怎么去呢?
答案 0 :(得分:1)
您需要在服务器中设置virtual hosting
。我知道你可以在Apache中执行此操作但不确定IIS
http://httpd.apache.org/docs/current/vhosts/examples.html
您还需要设置本地DNS服务器 在Windows中转到C:\ Windows \ System32 \ drivers \ etc \ hosts并使用测试编辑器打开它并添加一行,如:
172.16.2.6:8005测试
对于abc.com部分,您需要设置网址重写
答案 1 :(得分:0)
最好在页面加载
中使用javascriptwindow.location="http://tesing.com" + window.location.pathname;