본문 바로가기
컴퓨터공학/프로그래밍

PHP | 소스 그대로 보일 경우 해결방법

by KISCH 2020. 10. 19.
반응형

 

 

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

 

 

php

 

 

 

 

 

 

관련포스트

 

 

반응형

댓글