我目前有动态页面。例如,从我网站的根目录中index.php?p=proposal
打开一个页面/pages/landing.php
www/researchportal/
目前,页面http://localhost/researchportal/proposal
似乎是自己加载的(只是proposal.php 的内容,没有CSS),而不是通过index.php 文件加载。这意味着 CSS 未正确加载。
http://localhost/researchportal/index.php?p=proposal
此链接在加载 CSS 的情况下正确加载。
http://localhost/researchportal/proposal
此链接不包含在 index.php 文件中定义的标头和 CSS。
我的 .htaccess 文件位于我网站的根目录中www/researchportal/
RewriteEngine On
RewriteRule ^([A-Za-z0-9-_]+)$ index.php?p=$1
为什么http://localhost/researchportal/proposal
加载不正确?