本文介绍了Symfony2简单的.htaccess密码保护用于开发目的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在开发时使用 .htaccess 文件保护我的symfony2网站。

I would like to use a .htaccess file to protect my symfony2 website while developing it.

我在 / web中的 .htaccess 的开头添加了以下行和一个 .htpasswd 文件紧跟着我的密码。

I added the following line at the beginning of my .htaccess located in /web and a .htpasswd file just next with my password.

AuthName "Développement"
AuthType Basic
AuthUserFile ".htpasswd"
Require valid-user

当我尝试访问我的网站时出现错误500。我可以使用htaccess吗?

I have a Error 500 when I try to access my website. Is it possible to use a htaccess in my case ? What should I use if it is not posible ?

推荐答案

假设500错误是由这些指令引起的,最可能的原因是: .htpasswd 的路径。

这意味着将auth文件存储在其他位置,例如 / etc / apache2 / htpasswd

This means, store the auth file somewhere else, like /etc/apache2/htpasswd.

这篇关于Symfony2简单的.htaccess密码保护用于开发目的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 14:58