0

Apache2 サーバーを再起動しようとすると、次のエラーが表示されます。

  ubuntu$ sudo /etc/init.d/apache2 restart
  Syntax error on line 6 of /etc/apache2/sites-enabled/default:
  Illegal option \xe2\x80\x93MultiViews
  Action 'configtest' failed.
  The Apache error log may have more information.
  ...fail!

これは私のsites-available/default.conf

<VirtualHost *:80>
    ServerName server.example.comm
    DocumentRoot /var/www/testapp/public

    <Directory /var/www/testapp/public>
        AllowOverride all
        Options –MultiViews
    </Directory>
</VirtualHost>
4

1 に答える 1

1

試す

Options Indexes FollowSymLinks MultiViews
于 2012-05-22T19:35:56.353 に答える