현재 동적 페이지가 있습니다. 예를 들어, index.php?p=proposal
내 웹 사이트 www/researchportal/
.htaccess가있는 동적 페이지
현재의 루트에 /pages/landing.php
에서 페이지를 열고 페이지 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로 파일?