要使用自己的域名绑定博客,通常需要以下几个步骤:
yourdomain.cdn.myqcloud.com
。server {
listen 80;
server_name yourdomain.com;
root /var/www/yourblog;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
通过以上步骤,你应该能够成功地将自己的域名绑定到博客上。
领取专属 10元无门槛券
手把手带您无忧上云