Apache 2.4.6 default.conf 格式已更改。无法运行 .htaccess
Posted
技术标签:
【中文标题】Apache 2.4.6 default.conf 格式已更改。无法运行 .htaccess【英文标题】:Apache 2.4.6 default.conf format changed. Unable to run .htaccess 【发布时间】:2013-11-23 18:42:17 【问题描述】:伙计们。我正在使用代码点火器。我使用 .htaccess 从我的 url 中删除了 'index.php',并在我的 default.conf 中添加了“Allow from all”。 'index.php' 已成功删除并且站点正在运行。但自从上次更新 apache 以来,.htacess 停止工作,并且 'index.php' 在 url 中变得必要。这是我新更新的 000-default.conf。
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog $APACHE_LOG_DIR/error.log
CustomLog $APACHE_LOG_DIR/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
#vim: syntax=apache ts=4 sw=4 sts=4 sr noet
我在 000-default.conf 中添加了以下几行,但没有用:
AllowOverride all
Order allow,deny
Allow from all
我的 .htaccess 没问题,因为它在上次更新 Apache 之前运行良好。
Options -Indexes
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|assets|robots\.txt)
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %REQUEST_URI ^htaccess/ [NC,OR]
RewriteCond %REQUEST_URI ^system/function/ [NC,OR]
#just make sure the last rule does NOT have an OR
RewriteCond %REQUEST_URI ^system/class/ [NC]
RewriteRule . - [R=404,L,NC]
我的 apache 版本是 2.4.6。现在请告诉我要添加什么到 000-default.conf 以使 .htaccess 正常工作并从我的站点 url 中删除 'index.php'。
P.S:我使用的是 ubuntu 12.04。 mod_rewrite 已启用。我已启用 000-default.conf,即它在我的启用站点的文件夹中可用。
【问题讨论】:
你有文件/etc/apache2/apache2.conf吗?在其中你有 AccessFileName .htaccess 行? 是的...我的 apache2.conf 中有那行。 【参考方案1】:我仍然是服务器/命令行领域的新手,所以我想我会在类似的地方为其他人附加一个分步解决方案。希望这可以帮助某人:
登录到您的服务器。
用 nano 打开 000-default.config 文件:
$ sudo nano /etc/apache2/sites-available/000-default.conf
在 VirtualHost 中查找此行:DocumentRoot /var/www/html
并在其下方添加以下内容:
<Directory /var/www >
AllowOverride All
</Directory>
保存您的编辑: 按 CTRL + O 写入;然后点击 RETURN 保存您的更改
退出 Nano: 按 CTRL + X
重启你的服务器:
$ sudo service apache2 restart
如果您需要激活 apache mod_rewrite 模块,请运行以下命令:
$ sudo a2enmod rewrite
如果该模块已激活,您将收到一条消息,告知您一切正常。
【讨论】:
【参考方案2】:这有点老了,但是因为我现在看到它并且我让它工作了,也许这会让任何绊倒它的人澄清。
你打开那个 000-default.conf 文件,找到“/var/www”,然后把它放进去:
<Directory /var/www>
AllowOverride All
</Directory>
然后保存并重新启动 apache。您还需要为 Apache 打开 mod_rewrite。这很容易通过谷歌搜索找到。
【讨论】:
【参考方案3】:ServerName localhost
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory /var/www >
AllowOverride All
</Directory>
ErrorLog $APACHE_LOG_DIR/error.log
CustomLog $APACHE_LOG_DIR/access.log combined
;)
【讨论】:
如果你能提供更多关于这个的细节,那就太好了。以上是关于Apache 2.4.6 default.conf 格式已更改。无法运行 .htaccess的主要内容,如果未能解决你的问题,请参考以下文章