아파치를 설치했으니 다음은 PHP를 설치하였습니다.
아래 주소에서 PHP를 다운로드하였습니다.
* 아파치 버젼에 따라 설치 할 수 있는 PHP 버전이 다르다고 합니다.
1. 빨간 네모박스처럼 설치파일이 4가지의 종류로 있습니다.
저는 아파치를 사용중이고 64비트 운영체제이기 때문에
2번째 꺼를 받았습니다.
(vc15 x64 Thread Safe)
2. 그 이유는 아래와 같습니다.
IIS 를 사용중이라면 NON-THread safe를
아파치라면 Thread safe를 사용하라고 합니다.
그리고 VC15버젼인데 설치가 안되어 있다면
이 설명창 아래에서 다운로드 받을 수 있습니다.
3. ZIP파일을 다운받고 이 경로에 압축풀었습니다.
4. 그리고 php.ini-production이라고 되어있는 것을 php.ini로 변경하였습니다.
다음으로 php.ini을 들어가서 설정을 바꿔줘야 합니다.
5. extension_dir을 검색하여 다음과 같이 바꿔줍니다.
앞에 ; 를 제거하고 "설치 경로/ext"로 바꿔줍니다.
그리고 저장합니다.
6. 다음으로 아파치 설정파일로 들어갑니다.
7. DirectoryIndex를 검색하여 다음과 같이 바꿔줍니다.
8. 그리고 다음과 같이 4줄을 추가해줍니다.
PHPIniDir "php설치경로"
LoadModule php7_module "php설치경로/php7apache2_4.dll"
AddType application/x-httpd-php .html .php
AddHandler application/x-httpd-php .php
그리고 저장합니다.
9. cmd창을 관리자 모드로 들어갑니다.
아파치 bin 파일로 들어가 httpd.exe를 재시작합니다.
(cd 아파치 bin파일 경로)
10. 아파치서버의 htdocs 파일로 들어갑니다.
다음과 같은 php파일을 만듭니다.
phpinfo란 php의 옵션을 보여주는 명령어입니다.
11. 인터넷 주소창에 http://localhost/phpinfo.php를 입력하고 엔터를 치면
다음과 같은 화면이 나오면 php설치 완료입니다.
Now that you have Apache installed, you have installed PHP.
I downloaded PHP from the address below.
* The version of PHP that can be installed depends on the version of Apache.
1. There are 4 kinds of installation files like red box.
I'm using Apache and it's a 64-bit operating system
I got a second blow.
(vc15 x64 Thread Safe)
2. The reason is as follows.
NON-THREAD safe if you are using IIS
Apache tells me to use Thread safe.
And if VC15 version is not installed
This can be downloaded from the bottom of the description window.
3. I downloaded the ZIP file and extracted it to this path.
4. We changed php.ini-production to php.ini.
Next you need to go into php.ini and change the settings.
5. Search for extension_dir and change it as follows.
Before ; And change it to "install path / ext".
And save.
6. Next, enter the Apache configuration file.
7. Search DirectoryIndex and replace it with
8. And add 4 lines as follows.
PHPIniDir "php installation path"
LoadModule php7_module "php installation path /php7apache2_4.dll"
AddType application / x-httpd-php .html .php
AddHandler application / x-httpd-php .php
And save.
9. Enter the cmd window into administrator mode.
Enter the Apache bin file and restart httpd.exe.
(cd apache bin file path)
10. Enter the htdocs file on the Apache server.
Create the following php file:
phpinfo is a command that shows php options.
11. Type http: //localhost/phpinfo.php in the Internet address bar and hit enter
When the following screen appears, php installation is complete.
Comments
Post a Comment