我有一台运行 nginx + php5-fpm 的服务器,其中安装了 wordpress。我的网站在 example.com 上提供服务,我想配置 admin.example.com 以将我的网站贡献者指向 example.com/wp-admin。如何配置我的 server{} 块来执行此操作?
答案1
我相信这样的事情应该有效:
server {
server_name admin.example.com;
rewrite ^(.*) http://example.com/wp-admin permanent;
}
答案2
尝试这个:
location / {
root /home/kiputih0/public_html;
index index.php;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
在我的永久链接中,我有自定义规则:/%year%/%monthnum%/%day%/%postname%.html
当我浏览某篇文章时,它会是:
/2010/11/15/beta.html
干杯...