試圖使用模塊重寫生成動態Url,它似乎是做錯了什麼,並得到服務器錯誤!服務器遇到一個內部錯誤 我用這個代碼apache 2.4模塊重寫錯誤
<IfModule mod_rewrite.c>
#Enable mod_Rewrite
RewriteEngine on
RewriteBase /project
RewriteCond %{THE_REQUEST} ^GET\ .*/index\.(php|html?)\ HTTP
RewriteRule ^(.*)index\.(php|html?)$ $1 [R=301,L]
</ifModule>
項目化名爲C:/項目 任何指針達到什麼M試圖?? m使用apche 2.4應該將.htacess保存在項目文件夾中?或conf文件夾? 我想要實現這樣的
localhost/project/index.php?departmentId=2/
localhost/project/science-d2/
都應該加載相同頁面
那個功夫, – newbie