달리는 자동차
xampp 세팅 오류 본문
php.ini 파일 한글설정
1. html에 php파일이 인식이 안됬다.
2. html파일에서 php파일을 인식할 수 있도록 설정하였다.
3. html소스가 그대로 노출이 됬다.
4. html 소스를 읽을 수 있도록 설정
httpd-xampp.conf[D:\xampp\apache\conf\extra]
<FilesMatch "\.php$">
SetHandler application/x-httpd-php</FilesMatch>
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php</FilesMatch>
<FilesMatch "\.html$">
SetHandler application/x-httpd-php</FilesMatch>
httpd.conf [D:\xampp\apache\conf]
addType text/html .php .phps .html .htm 추가
참고사이트 :
blog.sw4u.kr/2018/11/centos7-apache-htm-html-php.html?showComment=1611228414734#c7388002435282418773
idchowto.com - 스마일서브(Cloudv.kr)
IDC구축,운영,보안등 모든 지식을 공유합니다
idchowto.com
ubuntu) html 코드 안의 PHP 코드가 실행되지 않을 때 (주석처리 될 때)
개발환경을 윈도우에서 우분투로 옮긴 후, 거의 2시간 동안 삽질했던 게 있는데 바로 html 코드 안의 php 코드가 실행되지 않는다는 것 ㅠㅠ.... 예를 들어서 index.php 파일 안의 는 실
xn--bh3b85ri4b.site
ubuntu) html 코드 안의 PHP 코드가 실행되지 않을 때 (주석처리 될 때)
개발환경을 윈도우에서 우분투로 옮긴 후, 거의 2시간 동안 삽질했던 게 있는데 바로 html 코드 안의 php 코드가 실행되지 않는다는 것 ㅠㅠ.... 예를 들어서 index.php 파일 안의 는 실
xn--bh3b85ri4b.site
'PHP > 독학' 카테고리의 다른 글
PHP info 띄우기 (0) | 2021.02.22 |
---|---|
## PHP 개발 환경 구성하기 (0) | 2021.02.10 |
PHP정리 1 (0) | 2020.09.06 |
PHP에서 include 와 require의 차이 (0) | 2020.08.20 |
세션 (0) | 2020.08.16 |