0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows 10でLaravelを動かすまでのメモ

0
Posted at

PHPインストール

ダウンロード

インストール

  • 解凍後、C:\phpに配置
  • PATH設定
  • php.iniの設定

Apacheインストール

ダウンロード

インストール(PHPの設定含む)

  • zip解凍
  • httpd -k install
  • httpd.conf修正
    • LoadModule php7_module C:/php/php7apache2_4.dll
<FilesMatch "\.php$">
  AddHandler php7-script .php
  AddType application/x-httpd-php .php
</FilesMatch>

PHPIniDir "c:\php"

Composerインストール

  • Composer-Setup.exe 実行

Laravel インストール

composer create-project --prefer-dist laravel/laravel [PJ-name]

サーバ起動

c:[PJ-name]>php artisan serve

参考リンク

PHPのインストール
http://www.phpbook.jp/install/

Apacheインストール
https://www.adminweb.jp/apache/

0
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?