重定向的.htaccess无法正常工作

时间:2013-06-12 14:15:06

标签: linux apache .htaccess mod-rewrite

我在我的linuxmint 15中启用了mod_rewrite但是.htaccess不会工作。这是我的apache配置

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www/xampp/htdocs
    <Directory />
            Options FollowSymLinks
            AllowOverride All
    </Directory>
    <Directory /var/www/xampp/htdocs/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

请帮助我。问你是否需要任何信息。

这里也是我的htaccess文件

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /mehedi.php [L]
</IfModule>

并且htaccess文件位于“/ var / www / xampp / htdocs /”目录中。

谢谢

2 个答案:

答案 0 :(得分:0)

您的apache错误日志中有用吗?我建议检查你的httpd.conf中是否有任何正在设置的Options指令。对于您已配置的DocumentRoot之上的目录或目录,您的AllowOverride选项可能设置为无或“全部”以外的其他选项。希望这有帮助 - 祝你好运!

答案 1 :(得分:0)

您是否激活了重写模块? (sudo a2enmod rewrite + sudo service apache2 restart