我目前有動態頁面。例如,index.php?p=proposal
打開一個頁面從/pages/landing.php
在我的網站www/researchportal/
使用.htaccess動態頁面
目前的根,http://localhost/researchportal/proposal
的頁面似乎由它自己(只是proposal.php,沒有CSS的內容)加載,而不是通過索引.php文件。這意味着CSS沒有正確加載。
http://localhost/researchportal/index.php?p=proposal
此鏈接可以正確載入CSS。
http://localhost/researchportal/proposal
此鏈接不包含在index.php文件中定義的標題和CSS。位於我的網站的根www/researchportal/
RewriteEngine On
RewriteRule ^([A-Za-z0-9-_]+)$ index.php?p=$1
爲什麼心不是http://localhost/researchportal/proposal
加載正確
我的.htaccess文件?