1

簡単な書き換えルールがあります。

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(js|ico|txt|gif|jpg|png|css)$ index.php

ルールはWindowsサーバーで正常に機能します。Linux(Ubuntu 12.10)では、 URL
を除いて機能します。デフォルトのapache404ページを返します。/index/index/*

どうすればこの問題を解決できますか?

4

1 に答える 1

2

Options -MultiViews助けた。

問題の説明:http ://www.webmasterworld.com/apache/3161107.htm

于 2012-12-19T12:39:12.283 に答える