你好,我的 moodle 网站使用的是 nginx 和 ubuntu 18
我添加了一个域名,每次我尝试访问它时,它总是将我重定向到我的 IP 地址。
这是我的街区
server {
listen 80;
listen [::]:80;
root /var/www/html/moodle;
index index.php index.html index.htm;
server_name moodle.mysqite.com;
location / {
try_files $uri $uri/ =404;
}
location /dataroot/ {
internal;
alias /var/www/html/moodledata/;
}
location ~ [^/]\.php(/|$) {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
答案1
实际上 moodle 进行了重定向。我必须更改站点的 moodle 文件夹中的 config.php