2

我想将我的 Tomcat7 服务器的默认页面设为私有,即只有在.htaccess输入密码后才能访问。

我的意思是这个页面:

Tomcat 默认页面

为此,我补充说:

<user username="admin" password="admin" roles="manager-gui"/>

tomcat-users.xml.

然后我补充说:

<security-constraint>
    <web-resource-collection>
        <web-resource-name>Entire Application</web-resource-name>
        <url-pattern>/references/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
        <role-name>admin</role-name>
    </auth-constraint>
</security-constraint>

<!-- Define the Login Configuration for this Application -->
<login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Application</realm-name>
</login-config>

<!-- Security roles referenced by this web application -->
<security-role>
    <description>
    The role that is required to log in to the Manager Application
    </description>
    <role-name>admin</role-name>
</security-role>

webapps/ROOT/WEB-INF/web.xml.

但是当我打开默认页面时,htaccess 对话框仍然没有出现。

我究竟做错了什么?

4

1 回答 1

2

查看您的<url-pattern>,它指向/references/*(在 ROOT 文件夹中不存在)典型的 Tomcat 设置欢迎页面位于根文件夹中,因此<url-pattern>应该指向/*.

于 2011-06-03T12:20:43.360 回答