Windows Apache deployment site public network access file loading problem

  

installed Apache under windows, and deployed the project, but the local access is no problem, but has been accessed through the public network, it is found that some js take Complete, resulting in missing features, here you need to modify a configuration.

Find the server.xml configuration file in the original conf/directory, edit:
vi server.xml

Find the following content:
<Connector port="8080" protocol ="org.apache.coyote.http11.Http11NioProtocol" connectionTimeout="20"redirectPort="8043" />

Change the :org.apache.coyote.http11.Http11NioProtocol to HTTP/1.1 :
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20"redirectPort="8043" />

This time you can see it again, but not Determine if all is the case.

Copyright © Windows knowledge All Rights Reserved