8

伙计们。我正在使用代码点火器。我使用 .htaccess 从我的 url 中删除了 'index.php',并在我的 default.conf 中添加了“Allow from all”。'index.php' 已成功删除并且站点正在运行。但自从上次更新 a​​pache 以来,.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'。

PS:我使用的是 ubuntu 12.04。mod_rewrite 已启用。我已启用 000-default.conf 即它在我的启用站点的文件夹中可用。

4

3 回答 3

9

我仍然是服务器/命令行领域的新手,所以我想我会在类似的地方为其他人附加一个分步解决方案。希望这可以帮助某人:

  1. 登录到您的服务器。

  2. 使用 nano 打开 000-default.config 文件:

    $ sudo nano /etc/apache2/sites-available/000-default.conf
    
  3. 在 VirtualHost: 中查找这一行,DocumentRoot /var/www/html并在其下方添加以下内容:

    <Directory /var/www >
        AllowOverride All
    </Directory> 
    
  4. 保存您的编辑:按CTRL + O写入;然后按回车键保存您的更改

  5. 退出 Nano:按CTRL + X

  6. 重启你的服务器:

    $ sudo service apache2 restart
    
  7. 如果您需要激活 apache mod_rewrite 模块,请运行以下命令:

    $ sudo a2enmod rewrite 
    

    如果该模块已激活,您将收到一条消息,让您知道一切正常。

于 2014-09-01T04:39:42.197 回答
7

这有点老了,但因为我现在看到它并且我让它工作了,也许这会让任何绊倒它的人澄清。

你打开那​​个 000-default.conf 文件并找到它说“/var/www”的地方,然后把它放进去:

<Directory /var/www>
AllowOverride All
</Directory>

然后只需保存并重新启动apache。您还需要为 Apache 打开 mod_rewrite。这很容易通过谷歌搜索找到。

于 2013-12-07T16:21:48.480 回答
1

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

;)

于 2013-11-16T07:41:37.683 回答