Questions tagged «.htaccess»

4
这是在Apache 2.4.7中启用htaccess的正确方法吗
在“如何激活htaccess”的几乎所有解决方案中,他们都说/ etc / apache2 / sites-available / default文件需要进行编辑。但是Apache 2.4.7中没有这样的文件 我在某处读到新的默认文件是000-default.conf。所以我编辑了那个,并尝试添加以下行: AllowOverride All 但是Apache2没有正确重启,并给出了错误。从apache2文档中,我发现仅在该<Directory>部分下允许AllowOverride 。然后我尝试添加以下内容: <Directory "/var/www"> AllowOverride All </Directory> 这似乎可行。但是我不确定是否应该将/ var / www放在那儿。这是正确的方法还是我的计算机会以某种方式烧毁?

3
启用.htaccess文件以重写路径(不起作用)
所有教程都告诉我编辑::/etc/apache2/sites-available/default但是该文件对我而言不存在。在此文件中,我将必须编辑: <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None #AllowOverride All #AllowOverride AuthConfig FileInfo Indexes Limit Options=All, MultiViews Order allow,deny allow from all </Directory> 该文件应该是什么样子,我应该自己创建它? Aslo我确实有一个000-default.conf文件,但是上面的“代码”也没有。

2
.htaccess错误:无效的命令“ AuthGroupFile”
在此之前,我在Windows上工作,我的项目运行正常。最近,我搬到了ubuntu,并尝试在LAMP上安装项目。 我为此创建了主机(我直接通过本地主机运行的Windows),当我运行它时,得到500 Internal server Error。 当我查看日志文件时,收到无效命令'AuthGroupFile',可能是拼写错误或由服务器配置中未包含的模块定义的。 .htaccess文件 #php_value zend.ze1_compatibility_mode off AuthName "Restricted Area" AuthType Basic AuthUserFile /opt/lampp/htdocs/uniplex_mobile/.htpasswd AuthGroupFile /dev/null <Files manageurls.html> require valid-user </Files> <Files addurl.html> require valid-user </Files> <Files editurl.html> require valid-user </Files> AddType application/x-httpd-php .php .htm .html 我的项目是在聪明的框架上。 谁能帮助解决这个问题? 提前致谢
12 14.04  lamp  .htaccess 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.