0

I want to run a test on a Magento installation that is protected with a htaccess password. How can I do that without entering the password each time the test is started?

Thanks!

4

1 回答 1

1

在您的 .htaccess 文件中设置密码 prodection(基本身份验证)应保护的时间。

例如,下面的配置 (.htaccess) 将: 允许从 IP 地址 123.45.67.12 进行访问,但在从任何其他 IP 地址请求时限制访问(提示输入用户名和密码)。

AuthType Basic
AuthName “Sorry, Restricted Area!”
AuthUserFile /path/to/your/.htpasswd
Require valid-user
Allow from 123.45.67.890
Satisfy Any
于 2012-04-12T15:08:31.553 回答