我需要限制对特定网址的访问权限,例如我的网络服务器上的http://mydomain.com/this/is/the/url使用Apache进行基本身份验证。任何其他URL都应该是可以公开访问的。我已经看到您可以使用以下方法向文件添加特定规则:
<Files "mypage.html">
Require valid-user
</Files>
我的问题是所有请求都使用mod-rewrite路由到控制器,所以我认为我不能根据文件限制访问。任何想法都会有所帮助!
答案 0 :(得分:1)
在.htaccess文件中你应该输入:
AuthType Basic
AuthName "Need to login"
AuthUserFile .htpasswd file location ;
Require user USER
//AuthName is login prompt message
//AuthUserFile is physical .htpasswd file location i.e.
C:/xampp/htdocs/basic/.htpasswd
//Require user is for a specific user i.e. the username you want to
authenticate
要生成.htpasswd文件,您可以使用: - http://www.htaccesstools.com/htpasswd-generator/
答案 1 :(得分:0)
我不确定这是否可行/帮助,但您可以在应用程序web.xml中指定一些内容。
<security-constraint>
<display-name>Public access</display-name>
<web-resource-collection>
<web-resource-name>PublicPages</web-resource-name>
<description>Public</description>
<url-pattern>/servlet/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<security-constraint>
<display-name>Secured access</display-name>
<web-resource-collection>
<web-resource-name>SecuredPages</web-resource-name>
<description>Secured pages</description>
<url-pattern>/services/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<description>General Access</description>
<role-name>*</role-name>
</auth-constraint>
<user-data-constraint>
<description>SSL not required</description>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>SecurePages</realm-name>
</login-config>
<security-role>
<description>General Access</description>
<role-name>*</role-name>
</security-role>