1
這是一個簡單的問題。如何更改.htaccess
文件以重寫所有文件以將其重定向到index.php
文件?重寫所有內容到index.php?
當我刪除RewriteCond
的行時,我會得到505 Internal Server Error
。
這是我.htaccess
文件:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
難道這會重定向圖像嗎?因爲我只想要重寫非圖像文件。 – AlexioVay
檢查我更新的答案以忽略css/js /圖像文件。 – anubhava