我想知道爲什麼下面的htaccess文件生成一個500錯誤:重寫URL問題
<IfModule !mod_rewrite.c>
ErrorDocument 500 "Your_Server_Is_Not_Compatible: Apache does not have mod_rewrite loaded. Please check your Apache setup."
RedirectMatch 302 .* index.php
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(.*)$ versions/0/1/$1
</IfModule>
感謝在此先感謝
所以我想要任何文件重定向到文件夾/版本/ 0/1中的等價物,例如,index.php => versions/0/1/index.php等... – fabjoa 2010-08-08 20:40:47
爲什麼不問錯誤日誌? – 2010-08-08 20:41:06
我做到了,沒有錯誤顯示日誌 – fabjoa 2010-08-08 20:43:24