当前站点上的 WordPress 固定链接问题 (Wp Network)
我正在使用 wordpress。 安装在子文件夹中。 (webroot/blog)
永久链接之前:http://www.mysite.com /blog/ example-post .html
我激活了网络。
永久链接之后:http://www.mysite.com /blog/blog/ example-post.html
wp-config.php
...
define('WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/blog/';
define( 'DOMAIN_CURRENT_SITE', 'www.mysite.com' );
define( 'PATH_CURRENT_SITE', '/blog/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
...
主站固定链接设置 https://i.sstatic.net/GyhWf.jpg
怎么办?
I'm using wordpress. Installed in the subfolder. (webroot/blog)
Permalinks was before: http ://www.mysite.com /blog/ sample-post.html
I actived the network.
Permalinks after: http ://www.mysite.com /blog/blog/ sample-post.html
wp-config.php
...
define('WP_ALLOW_MULTISITE', true);
define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/blog/';
define( 'DOMAIN_CURRENT_SITE', 'www.mysite.com' );
define( 'PATH_CURRENT_SITE', '/blog/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
...
Main Site Permalink Settings
https://i.sstatic.net/GyhWf.jpg
how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您激活了网络,则无法将 WordPress 安装在子目录中。它必须位于您的 html 目录中。
您可能想要使用子域,或者如果您不使用网络,请将其禁用。
If you activated network you cannot have the wordpress installed in a sub directory. It has to be in your html directory.
You might want to use a subdomain, or if you are not using network, disable it.
是的,您可以在文件夹中安装网络。人们在警告中感到困惑的地方是他们误读了所提供的信息。
您无法在文件夹中安装网络并从根目录运行该地址。
这与您的问题无关,但我正在为其他回答者澄清这一点。
永久链接中的 /blog/ 添加到主博客只是为了防止冲突。寻找“删除博客永久链接”插件。
在 3.0 中存在一个错误,允许您手动删除它。
Yes, you can install a network in a folder. Where people get confused in the warnings is there part where they misread the information given.
you cannot install a network in a folder and run the address off the root.
This has no relevence to your problem, but I'm clarifying it for other answerers.
the /blog/ in your permalinks is added to the main blog only to prevent collisions. Look for the "remove blog permalink" plugin.
in 3.0 there was a bug allowing you to remove this manually.