Laravel中に前の質問で詰まっていて再起動したら今度はApache起動できなくなりました。良ければ前の質問も見ていただけると嬉しいです。
Error: Apache shutdown unexpectedly. 18:02:30 [Apache] This may be due to a blocked port, missing dependencies, 18:02:31 [Apache] improper privileges, a crash, or a shutdown by another method. 18:02:31 [Apache] Press the Logs button to view error logs and check 18:02:31 [Apache] the Windows Event Viewer for more clues 18:02:31 [Apache] If you need more help, copy and post this 18:02:31 [Apache] entire log window on the forums
・やったことはスカイプを終了したこと
・コントロールパネルからWorldWideWebServiceが起動していないか確かめた
・httpd.confのServername localhostを80から8080に変え、Listenも8080に変えた
.env
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=sample DB_USERNAME=root DB_PASSWORD=(自分で設定しました)
httpd.conf
LoadModule rewrite_module lib/httpd/modules/mod_rewrite.so
.htaccess
<IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews -Indexes </IfModule> RewriteEngine On # Handle Authorization Header RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] # Redirect Trailing Slashes If Not A Folder... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} (.+)/$ RewriteRule ^ %1 [L,R=301] # Handle Front Controller... RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule>
回答1件
あなたの回答
tips
プレビュー