我正在使用Nginx服务器。
如果我访问index.pl
,则会下载该文件而不是执行该文件。
我非常确定这与/etc/nginx/sites-available/default
这是一份副本
listen 80;
listen [::]:80;
server_name domain.com;
root /var/www/domain.com;
index index.html index.php index.pl;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
# With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
# With php-cgi (or other tcp sockets):
#fastcgi_pass 127.0.0.1:9000;
}
如您所见,我已将index.pl
添加到index
列表的末尾。
我需要什么才能让它发挥作用?