我在设置php配置时遇到了问题,here 现在我已经修复了这个问题,我认为这会导致我的下拉菜单出错。
我正在使用bootstrap,当我导航到bootstraps example page时,下拉菜单工作正常。当我将网站上的源代码复制到我网站上的示例文件中时,它无法按预期工作 (注意:在我更改配置之前,下拉列表确实有效)。
如果还需要其他任何东西,请说。
当前的nginx配置
listen 80;
server_name hamhut1066.com;
root /srv/http/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php {
include fastcgi.conf;
fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}