Включите использование .htaccess в apache2

Это не могло бы быть непосредственно связано с самой Ubuntu, но дерево каталогов отличается здесь, и я отчасти смущен.

У меня есть веб-сайт, который я пытаюсь выполнить, и он загружается прекрасный, но он в большой степени полагается на URL, переписывает, который я не получаю, потому что .htaccess директивы не могли бы быть включены в моей установке. Я следовал статье по Ubuntu.com для включения .htaccess файлов на моем apache2, но я не мог следовать за ним, потому что файлы, которые это говорит мне изменять, не существуют в папке, это говорит мне идти.

Это - самое близкое имя файла к default - 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

Я не вижу никого <Directory /var/www/> заблокируйтесь здесь.

Как я включаю свои .htaccess файлы? Мне нужны они на основание проекта.

1
задан 9 April 2014 в 22:17

2 ответа

Добавьте к VirtualHost:

<VirtualHost *:80>
   AccessFileName .htaccess (.htaccess is the default filename)
  ...
   <Directory /var/www/>
      Options Indexes FollowSymLinks Includes
      AllowOverride All
      Order allow,deny
      Allow from all
    </Directory>
...
</VirtualHost>

тогда апач перезапуска:

service apache2 restart

, Чтобы проверить, работает ли это, добавьте эту строку к .htaccess:

ErrorDocument 404 /error404.html

для ошибки 404 (страница, не найденная), Ваш обзор должен открыть Вашу пользовательскую ошибочную страницу, в этом случае error404.html

3
ответ дан 10 November 2019 в 19:24
sudo -i
sudo nano /etc/apache2/apache2.conf

, Если Ваш порт человечности 80 приземляется здесь /var/www/html

(Взгляд тщательно это не /var/www/)

Добавляют этот блок:

<directory /var/www/html>
     AllowOverride All
</directory>
0
ответ дан 10 November 2019 в 19:24

Другие вопросы по тегам:

Похожие вопросы: