将子域映射到 WordPress 标签
我想将子域映射到我的 WordPress 标签。 因此,当用户访问 mytag.myblog.com 时,他应该看到页面 myblog.com/tag/mytag (不过没有重定向)。 这将需要对 WordPress 代码进行一些修改,并为 apache 中的域设置“捕获所有子域”。后半部分应该没有问题。
我找到了一个可以对类别执行上述操作的插件。 它称为“WP 子域”(http://wordpress. org/extend/plugins/wordpress-subdomains/)。
有人知道可以对类别和标签执行此操作的插件吗?
I want to map subdomains to my wordpress tags.
So when a user visits mytag.myblog.com, he should see the page myblog.com/tag/mytag (without redirect, though).
This will require some modification of the wordpress code and setting up "catch all subdomains" for the domain in apache. The latter part should be no problem.
I found a plugin that does the above for the categories.
It is called "WP Subdomains" (http://wordpress.org/extend/plugins/wordpress-subdomains/).
Does anybody know of a plugin that can do this for categories and tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 mod_rewrite 手动执行此操作:
当然,您必须创建通配符 dns 记录 (*.example.com),并设置 apache 通配符虚拟主机,以便所有 dns 请求映射到您的主机,并由您的站点从服务器响应。
You can do it manually with mod_rewrite:
Sure you have to create a wildcard dns record (*.example.com), and setup an apache wildcard virtualhost, so all dns requests map to your host, and responded by your site from the server.