.htaccess被忽略- Ubuntu 14.04

kx5bkwkv  于 2022-11-16  发布在  其他
关注(0)|答案(2)|浏览(186)

我正在尝试使用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启用了mod_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文件,一切仍然工作正常,这意味着它没有被加载。
我错过了什么?

roqulrg3

roqulrg31#

首先,文件名并不重要。000-default.conf,虽然不是很常见,但对我来说似乎不错。

修改站点配置

在提供.htaccess文件时,您必须考虑两件主要事情:

AccessFileName .htaccess
AllowOverride All

正如apache 2文档中所述,您必须在Directory节中声明AllowOverride。这就是为什么在主配置文件中设置它时它不起作用的原因。
我建议您将这4行代码粘贴到**/etc/apache 2/000-default.conf中的Virtualhost**部分,这样就可以正常工作了:

<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride All
</Directory>

(假设根目录为/var/www)
您不必将AccessFileName设置为默认值 .htaccess
如果它不起作用,并且/etc/apache2/sites-available中有多个文件
Apache可能会使用另一个配置而不是000-default. conf。只需检查哪些站点是符号链接到 /etc/apache 2/sites-enabled 的。如果仍然有一个以上的站点,您可能需要禁用所有其他已启用的站点以确保安全。
如果它仍然不起作用,只需检查文件所有权和权限。

bq3bfh9z

bq3bfh9z2#

问题是我把.htaccess文件放在/var/www/中,而我的网站的DocumentRoot指向了一个不同的目录。把.htaccess文件移到那个文件夹解决了这个问题。

相关问题