页面中中文链接不能使用的解决方法

修改tomcat 中server.xml文件

在以下配置中增加

URIEncoding="UTF-8"


增加后的内容如下:

<Connector port="8090" protocol="HTTP/1.1" 
               connectionTimeout="20000" 
               redirectPort="8443" URIEncoding="UTF-8"/>

你可能感兴趣的:(tomcat)