English 中文(简体)
使用 strutts2 在 Tomcat 服务器根部的 HTML 文件
原标题:HTML file at the root of tomcat server using struts2

我要将googleverfication.htm文件永久置于我们网站的根部,

我用的是6号服务器

如何做到这一点?

我将文件保存在根 & amp; 点击 < a href=" https:// myurl.com/googleverfication.htm" rel=“ nofollow” >https://myurl.com/googleverfication.htm 处, 但没有出现任何消息。 请求根本不会发出 。

我是否需要在 struts.xml 或 web.xml 中添加条目?

注:在Web.xml中,我以 /* 的 URL 模式在 Web.xml 中将 CAS 服务器过滤器筛选为 URL 模式

谢谢!

最佳回答

如果您通过映射 / * 推翻默认服务器, 那么该服务器将会响应“ /googleverfication.htm” 的请求。 如果您想要允许 / real/ 默认服务器响应此文件的请求, 请在 Web. xml 文件中尝试 :

<servlet-mapping>
  <servlet-name>default</servlet-name>
  <url-pattern>/googleverfication.htm</url-pattern>
</servlet-mapping>

如果您的“ CAS 服务器过滤器” 是干扰的, 您可能想要为该 URL 模式做出例外( 要么在 Web. xml 中, 以不同的方式绘制, 要么通过配置过滤器忽略该特定的 URL 模式, 并将请求传递到过滤链的其余部分 ) 。

问题回答

暂无回答




相关问题
Tomcat´s server.xml dynamic configuration

My web application uses the same database configuration as the application XYZ. I have a resource declaration for a context in server.xml, so I have a duplicated configuration (once for web ...

session transfer issue from Tomcat to ASP.Net

I am using Tomcat to host JSP and using IIS 7.0 to host aspx (C# + .Net 3.5 + VSTS 2008), and I have some session transfer issue from JSP page to ASPX page. JSP page is in one domain and all other ...

JSP exception - class not found (tomcat)

I m setting up an existing application on a new Tomcat 5.5 server connecting to a Postgres database (running on Debian Lenny). When I access it I get a series of stack traces with the following root ...

热门标签