Apache:在xampp 1.8.0中启用MultiViews

时间:2012-08-02 22:13:21

标签: apache .htaccess xampp

我需要在xampp 1.8.0中启用apache MultiViews。

我在httpd.conf中找到了这一行(c:\ xampp \ apache \ conf \ httpd.conf)

Options Indexes FollowSymLinks Includes ExecCGI 

更改为:

Options Indexes FollowSymLinks Includes ExecCGI MultiViews

但这不起作用,我看到server error 500。如何解决这个问题?

我的.htaccess:

Options -Indexes
Options +FollowSymLinks
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
    RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301] 
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* loader.php [L,QSA]
</IfModule>

0 个答案:

没有答案