gpt4 book ai didi

wordpress - 两个 WordPress Multisite 安装在不同的子目录中

转载 作者:行者123 更新时间:2023-12-04 20:27:42 25 4
gpt4 key购买 nike

我在这里安装了 WordPress Multisite:mydomain.com
我用它来拥有不同的语言,例如:

 mydomain.com/fr
mydomain.com/de
...

现在我们正在改变设计,但我们想一步一步地,逐个语言地做。

所以我们在文件夹/new 中安装了另一个 Wordpress Multisite,它可以与像这样的网站完美配合
 mydomain.com/new/fr
mydomain.com/new/de
...

我们想将 JUST THE FRENCH 语言重定向到新的 wordpress。我已经在根文件夹中尝试过这个 .htaccess(基于 Wordpress documentation 中的信息:
RewriteCond %{HTTP_HOST} ^mydomain.com$
RewriteCond %{REQUEST_URI} !^/fr/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^fr(.*)$ /new/fr/$1
RewriteCond %{HTTP_HOST} ^mydomain.com$
RewriteRule ^fr(/)?$ /new/fr/index.php [L]

但这给出了“建立数据库连接时出错”。这很奇怪,因为正如我所解释的,站点 mydomain.com/new/fr 运行良好。

注意:我们不想使用子域,我知道这会产生不同的方法和解决方案;-)

编辑:错误是因为这个查询
SELECT  blog_id FROM wp_blogs  WHERE domain IN ( 'mydomain.com' ) AND path IN ( '/fr/', '/' )  ORDER BY CHAR_LENGTH(path) DESC LIMIT 1

我想,重定向运行良好,但是当“new”目录中的 wordpress 尝试确定要访问的博客时,它会读取 URL 并且它确实在“/”中,因为重定向规则有一个 [L] 并保持apache 环境变量中的原始 URL。

最佳答案

如果您在 WordPress 3.5 或更高版本上激活了 Multisite,您可以关注 documentation setup.htaccess and Mod Rewrite 部分

根据文档:

.htaccess and Mod Rewrite Unlike Single Site WordPress, which can work with "ugly" Permalinks and thus does not need Mod Rewrite, MultiSite requires its use to format URLs for your subsites. This necessitates the use of an .htaccess file, the format of which will be slightly different if you're using SubFolders or SubDomains. The examples below are the standard .htaccess entries for WordPress SubFolders and SubDomains, when WordPress is installed in the root folder of your website. If you have WordPress in its own folder, you will need to change the value for RewriteBase appropriately.

关于wordpress - 两个 WordPress Multisite 安装在不同的子目录中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55010578/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com