您好,登錄后才能下訂單哦!
看起來您在嘗試設置 Laravel 時遇到了問題
php -v
composer --version
如果沒有安裝,請訪問 PHP 官方網站 和 Composer 官方網站 下載并安裝它們。
composer global require laravel/installer
確保 ~/.composer/vendor/bin
(macOS 和 Linux)或 %APPDATA%\Composer\vendor\bin
(Windows)已添加到您的 PATH
環境變量中。
your-project-name
替換為您的項目名稱:laravel new your-project-name
www-data
或 nginx
)具有對 your-project-name
文件夾的讀寫權限。運行以下命令:sudo chown -R www-data:www-data your-project-name
sudo chmod -R 755 your-project-name/storage
sudo chmod -R 755 your-project-name/bootstrap/cache
public
文件夾。這里有一個簡單的 Apache 虛擬主機示例:<VirtualHost *:80>
ServerName your-domain.test
DocumentRoot /path/to/your-project-name/public
<Directory /path/to/your-project-name/public>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
對于 Nginx,您可以參考這個示例:
server {
listen 80;
server_name your-domain.test;
root /path/to/your-project-name/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。