0
如何刪除:8080從網站的URL使用.htaccess 例如。 http://web.steeplap.co.in:8080/projeqtor/view/main.php如何刪除:8080從網站的URL使用.htaccess
如何刪除:8080從網站的URL使用.htaccess 例如。 http://web.steeplap.co.in:8080/projeqtor/view/main.php如何刪除:8080從網站的URL使用.htaccess
您應該在tomcat配置中將端口號更改爲80。端口80是瀏覽器隱藏的唯一端口,因爲它是默認端口。
定位到[您-tomcat的根] /conf/server.xml然後更改
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
到
<Connector connectionTimeout="20000" port="80" protocol="HTTP/1.1" redirectPort="8443"/>
檢查這個網址http://stackoverflow.com/questions/13155529 /如何去除的多端口數從-HTTP-localhost8123使用的-AS-HTTP-本地主機 – Anish