我试图在我的Apache服务器上使用.htaccess
文件。
这是我的.htaccess
看起来像
# 1 YEAR
<FilesMatch "\.(ico|svg|woff|eot|ttf)$">
Header set Cache-Control "max-age=31536000, public"
</FilesMatch>
# 1 WEEK
<FilesMatch "\.(jpg|png|gif|css|js)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
# Add correct content-type for fonts
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType font/x-woff .woff
AddType image/svg+xml .svg
# Compress compressible fonts
AddOutputFilterByType DEFLATE font/ttf font/otf image/svg+xml
我使用a2enmod rewrite
我接下来的教程告诉我要编辑/etc/apache2/sites-available/default
中的文件,但该文件夹中没有名称default
的文件。在同一条路径中有一个000-default.conf
。但是该文件没有该部分
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
我应该编辑。
这是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
# 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
然而/etc/apache2/apache2.conf
具有完全相同的部分。所以我将AllowOverride None
替换为AllowOverride All
。之后我重新启动了服务器。
但是.htaccess
文件仍未加载。如果我在.htaccess
文件中添加乱码,一切仍然正常,这意味着它没有被加载。
我在这里想念的是什么?
答案 0 :(得分:3)
首先,文件的名称并不重要。 000-default.conf虽然不常见但对我来说似乎很好。
修改您的网站配置
在提供.htaccess文件时,您必须考虑两件大事:
AccesFileName .htaccess
AllowOverride All
正如apache2 doc中所述,您必须在目录部分声明AllowOverride
。这就是为什么它在主配置文件中设置时不起作用。
我建议您在 Virtualhost 部分的 /etc/apache2/000-default.conf 中粘贴这4行,它应该可以正常工作:
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
</Directory>
(假设你的根目录是/ var / www)
您不必设置 AccessFileName ,因为默认为 .htaccess 。
如果它不起作用且您在/etc/apache2/sites-available
Apache可能会使用另一个配置000-default.conf。只需检查哪些符号链接到 / etc / apache2 / sites-enabled 。如果仍然超过1,您可能希望禁用所有其他已启用的站点以确保。
如果仍然无效,只需检查文件所有权&amp;权限。
答案 1 :(得分:2)
问题是我将.htaccess
文件放在/var/www/
中,而我的网站DocumentRoot
指向另一个目录。将.htaccess
文件移动到该文件夹解决了这个问题。