노출되는 이미지가 불편하시겠지만 양해를 구합니다. 노출, 클릭등에 관한 자료로 활용 중입니다.



Laravel를 xampp에 설치하기 ( windows 기준 )




1. 사전 준비 ( 설치된 상태라면, pass )



1) xampp 설치하기


다운로드




2) composer설치하기 ( 설치후 composer명령어 실행으로 정상 설치여부를 확인 )


다운로드 : Composer-Setup.exe






2. xampp 구성 변경하기



1) 도메인 정하고, virtual hosts 수정하기


virtual host등록 위치 : [ C:\xampp설치위치]\apache\conf\extra\httpd-vhosts.conf


# VirtualHost for LARAVEL.DEV

<virtualhost laravel.dev:80>
    DocumentRoot "C:\xampp\htdocs\laravel\public"
    ServerAdmin laravel.dev
    <directory "c:\xampp\htdocs\laravel">
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </directory>
</virtualhost>


샘플 도메인 : laravel.dev


# localhost name resolution is handled within DNS itself.
#    127.0.0.1       localhost
#    ::1             localhost

127.0.0.1    laravel.dev


시스템 host 등록(관리자권한으로 편집) : c:\windows\system32\drivers\etc\hosts




2) install laravel 명령어 실행


위치 : htdocs폴더


명령어 : composer create-project laravel/laravel {laravel} "5.1.*"


* 실행 결과 : Laravel를 다운로드하고 설치

* {laravel} : 현재 위치에 생성될 프로젝트명(폴더명으로 사용)





* xampp 실행후 웹 화면







원문 :

https://www.codementor.io/magarrent/tutorials/how-to-install-laravel-5-xampp-windows-du107u9ji


유사 페이지 :


https://laravel.com/docs/5.3/installation#installing-laravel




설치 이후 


한글 강좌는 아래 링크로...


https://www.lesstif.com/pages/viewpage.action?pageId=28606603




영문 강좌 사이트는...

https://www.tutorialspoint.com/laravel/index.htm




할일 목록 ( Task List ) 만들기


https://laravel.com/docs/5.1/quickstart

블로그 이미지

StartGuide

I want to share the basic to programming of each category and how to solve the error. This basic instruction can be extended further. And I have been worked in southeast Asia more than 3 years. And I want to have the chance to work another country.

,