我有简单的重写规则:
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) 上,除了/index
URL 之外,它们都可以工作。/index/*
返回默认的 apache 404 页面。
我怎么解决这个问题?