我试图robots.txt在Spring- MVC中提供访问权限。为了测试代码,我把robots.txt在WebContent,Root和WEB-INF,但我不能访问任何人。
robots.txt
WebContent
Root
WEB-INF
我已经应用了这些问题的答案1,2,3无济于事。
我的密码
<mvc:resources mapping="/resources/**" location="/resources/" /> <mvc:resources mapping="/robots.txt" location="/robots.txt" order="0" /> <mvc:annotation-driven />
这对我有用:
把robots.txt直属webapp
webapp
在mvc-dispatcher-servlet.xml有:
mvc-dispatcher-servlet.xml
<mvc:default-servlet-handler/>
<mvc:resources mapping="/resources/**" location="/, classpath:/META-INF/web- resources/" />
使用Maven建立战争