代理URL .htaccess

时间:2015-09-15 14:27:52

标签: apache .htaccess url-rewriting webserver url-redirection

我在Gchrome控制台中收到错误

XMLHttpRequest cannot load http://example.com:7070/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://example.com' is therefore not allowed access.

我可以访问下面的http-bind http://example.com:7070/是我的 .htaccess文件

RewriteRule http-bind/ http://example.com:7070/

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您要做的是反向代理。 http://example.com:7070/是tecnically的另一个来源,因此无法加载。

您有几个选择。

  1. 在apache配置文件上配置反向代理
  2. 在.htaccess上实施,如this
  3. example.com:7070
  4. 上实施CORS