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) 上,除了/indexURL 之外,它们都可以工作。/index/*返回默认的 apache 404 页面。

我怎么解决这个问题?

4

1 回答 1

2

Options -MultiViews帮助。

问题描述:http ://www.webmasterworld.com/apache/3161107.htm

于 2012-12-19T12:39:12.283 回答