내 mod_rewrite 규칙에 문제가 있습니다.htaccess mod_rewrite 규칙
http://localhost/index.php?page=admin -> http://localhost/admin
http://localhost/index.php?page=welcome -> http://localhost/welcome
그것은 작동하지만, 난 단지 페이지 (환영 또는 관리자)는 변수이기 때문에 하나의 규칙을 작성하려는 :이 URL의이 같은 다음 변경
RewriteRule ^admin ?page=admin [NC]
RewriteRule ^welcome ?page=welcome [NC]
: 여기있는거야.
나는 그것이 작동하지 않습니다 시도했다 :
RewriteRule ([^/]+) ?page=$1 [NC]
을 내가 잘못 뭐하는 거지?
나는 해결책을 발견 (*.?) : RewriteRule의^([^/] *) $ index.php? page = $ 1 [NC] –
그리고 index.php를 추가하기 전에는 작동하지 않는 것 같습니다. 그것없이 아파치에서 오 구성 오류를 얻고 있었다. –