获取404页面时试图编辑页面/帖子与新安装的Avada/WordPress

icnyk63a  于 2023-08-03  发布在  WordPress
关注(0)|答案(1)|浏览(103)

我建立了一个新的WordPress(6.2.2)网站,并安装了Avada Builder(3.11.2)和Avada Core(5.11.2)的最新插件。
在启用了2个插件的情况下,当我试图编辑一个页面或帖子时(只需简单地点击页面或帖子的“编辑”),它会显示一个404页面。查看页面/帖子工作得很好。
我已经尝试了标准的建议解决方案,即重置永久链接并检查.htaccess文件,但似乎都不起作用。
禁用Avada插件后,我可以再次访问编辑页面。
有人知道任何其他解决方案,我可以尝试获得编辑页面/帖子与启用Avada工作?
在permalinks设置中,我将其设置为使用'Post name' Permalink结构,如果相关的话,这里是我的.htaccess文件:

# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

字符串

hgtggwj0

hgtggwj01#

将以下内容添加到.htaccess解决了问题:

<IfModule mod_substitute.c> 
SubstituteMaxLineLength 10M 
</IfModule>

字符串

相关问题