반응형
phpinfo
서버상태확인
WAMP 를 실행하여 서버가 작동 중인지 먼저 확인해 보세요.
phpinfo
<?php
phpinfo();
?>
로 php 정보가 출력되는지 확인해 주세요.
php.ini
short_open_tag
php.ini 파일에서 short_open_tag=off면 on으로 바꿔주세요. php를 여는 짧은 태그 형식을 허용해 줍니다.
httpd.conf
apache 서버
conf 폴더에 httpd.conf 파일이 있습니다.
1
2
3
|
<IfModule dir_module>
DirectoryIndex index.html index.html.var index.php index.php3
</IfModule>
|
cs |
1
2
3
4
5
6
|
<IfModule mime_module>
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php .html .htm .inc
AddType application/x-httpd-php-source .phps
</IfModule>
|
cs |
주소
아직도 안되세요?
파일
테스트 시 test란 폴더에 test란 html을 만들었다고 해 볼게요.
test.html에서 버튼을 누르면 php 파일로 넘어갑니다. test.html파일을 어떻게 여셨나요? 파일탐색기에서 더블클릭 하신건 아닌가요? 웹브라우저 주소창을 확인해 주세요. 같은 test.html이라도 아래와 같은 주소여야 합니다.
C:/Bitnami/wampstack-7.4.11-0/apache2/htdocs/Test/test.html
http://localhost/test/test.html
관련포스트
반응형
'컴퓨터공학 > 프로그래밍' 카테고리의 다른 글
파이썬 | 반복문(while, for) 조건문 (6) | 2022.11.15 |
---|---|
템플릿 언더바 (Template_) 기초 (0) | 2021.06.10 |
객체지향 프로그래밍 개념 (0) | 2021.01.01 |
프로그래밍 언어 공통 기초 지식 (0) | 2020.12.08 |
C# | ref. 언어참조 : 키워드와 데이터 형식 (0) | 2020.02.07 |
C# | ref. 프로그래밍 가이드 (0) | 2020.02.07 |
C# | 레퍼런스 둘러보기 (0) | 2020.02.07 |
C# | 자료형 (0) | 2020.02.07 |
댓글