4
所以我只是設置了一個linode服務器與debian,apache等,現在我試圖得到一個應用程序,我正在開發運行,但它需要mod_rewrite.c
。所以很自然,我去到應用程序的目錄(恰好是在PHP中,如果該事項),並創建了一個與的.htaccess這裏面的吧:Apache不使用mod_rewrite.c
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule>
所以他們我領導交給我的域名,example.com/hello
,它給了我一個404錯誤,當它應該顯示我index.php加載的內容。 mod_rewrite.c
不能正常工作嗎?
您可以嘗試刪除和 行,以查看Apache是否無法正確識別模塊。 –
2009-02-28 01:51:39