我已經(jīng)堅(jiān)持了一段時(shí)間。我們有一個(gè) Symfony 2.8 項(xiàng)目,我想將它部署到云端。我已經(jīng)正確創(chuàng)建了 ElasticBeanstalk 環(huán)境并且它可以工作!但我仍然需要訪問(wèn)http://domain/app.php才能使其正常工作。我設(shè)法從 URL 中刪除了 web/changing documentDirectory 部分,但 app.php 仍然存在。我還嘗試了一個(gè)新的品牌項(xiàng)目: https://docs.aws.amazon.com/es_es/elasticbeanstalk/latest/dg/php-symfony-tutorial.html 但是當(dāng)我將其更改為 public/ 時(shí)發(fā)生在我身上同樣我需要在 URL 中使用 index.php我修改了 NGINX conf 如下: https://community.bitnami.com/t/how-to-change-default-root/65639/9 https://symfony.com/doc/current/setup/web_server_configuration.html這是我添加到 /etc/nginx/nginx.conf.default location / { try_files $uri $uri/ /app.php$is_args$args;} location ~ \.php$ { try_files $uri $uri/ =404; fastcgi_pass unix:/var/run/php-fpm/www.sock; fastcgi_index app.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params;}我已經(jīng)使用重新啟動(dòng) nginx 服務(wù)sudo service nginx restart但它保持不變。為了以防萬(wàn)一,我還嘗試將 app.php 重命名為 index.php。但是我需要將 /index.php 添加到 URL。任何想法?
2 回答

牛魔王的故事
TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超3個(gè)贊
使用indexnginx 指令創(chuàng)建請(qǐng)求app.php的默認(rèn)處理程序http://domain/:
server {
...
index app.php;
# your locations here
}

皈依舞
TA貢獻(xiàn)1851條經(jīng)驗(yàn) 獲得超3個(gè)贊
您可以嘗試一些事情。
https://symfony.com/doc/2.8/setup/web_server_configuration.html#nginx
在這里您可以找到項(xiàng)目的配置。在那里你可以看到該位置被重寫為app.php
.
location ~ ^/(app_dev|config)\.php(/|$) {
所以我建議進(jìn)行配置并進(jìn)行測(cè)試。
- 2 回答
- 0 關(guān)注
- 140 瀏覽
添加回答
舉報(bào)
0/150
提交
取消