有没有办法将帖子名称用作子域名。
例如,我需要改变: example.com/test-page/ - > test-page.example.com example.com/mypost/ - > mypost.example.com
答案 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/。