Wordpress - 如何使用帖子或页面名称作为子域名?

时间:2015-04-04 18:11:40

标签: wordpress

有没有办法将帖子名称用作子域名。

例如,我需要改变: example.com/test-page/ - > test-page.example.com example.com/mypost/ - > mypost.example.com

1 个答案:

答案 0 :(得分:0)

只是一个建议,您可以尝试使用.htaccess(Apache)或.conf(nginx)重定向将URL(自动URL转发)重定向到子域。

在nginx中:

location = / {
    # don't redirect http://example.com/
}

location / {
    # redirect everything else
    rewrite ^\/([^\/]*).*$ http://$1.example.com/ redirect;
}

redirect替换为permanent,具体取决于您是否需要临时(HTTP 302)或永久(HTTP 301)重定向。

location = /块是必要的,这样您就不会将http://example.com/重定向到http://.example.com/