技术解析
我搞了一台阿里云 ECS 主机,注册了一个新的个人域名 tanteng.me ,我想把我的博客 www.tantengvip.com 移过来,域名改成二级域名的形式如 blog.tanteng.me ,或者 dev.tanteng.me ,博客是“一个关注 WEB 开发的技术博客”,那么你觉得哪个二级域名看上去更好一点呢?
另外还有一个问题请教,我的主机是 nginx 作为 WEB 服务器,如何配置二级域名的博客指向一个 wordpress 的目录呢?而主站是用 laravel 这个 PHP 框架,这个 nginx 规则怎么写,求教!!
目前的 nginx 规则如下:
server {
listen 80;
server_name localhost;
index index.php index.html index.htm;
#charset koi8-r;
access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html/tanteng.me/public;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
root /usr/share/nginx/html/tanteng.me/public;
try_files $uri $uri/ /index.php?$query_string;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILEN国外服务器AME $document_root$fastcgi_script_name;
include fastcgi_params;
}