404错误WordPress上的联系表单7

时间:2018-01-04 作者:Marvin JERNIDIER

我刚刚创建了一个新网站。除了联系方式之外,一切似乎都很好。实际上,接触表单不起作用,并且在一次尝试后会影响加载。chrome控制台向我提供了以下信息:

jquery-1.12.4.js:2 GET https://nameofthewebsite.fr/wp-json/contact-form-7/v1contact-form-7/v1/contact-forms/109/refill 404 ()
网站是这样的:可离婚的mayet。fr公司

1 个回复
SO网友:Aurovrata

这是很常见的issue htaccess文件阻止格式错误的未刷新url,如cf7 wp json请求。

因此,请检查您的.htaccess 要查看服务器是否也存在这种情况,请在.htaccess 即在请求末尾添加“/”

# Add trailing slash to the end of the link
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteCond %{REQUEST_URI} !^/wp-json
RewriteCond %{REQUEST_FILENAME} !\\.(gif|jpg|png|jpeg|css|js|xml)$ [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1/ [L,R=301]
# End Adding trailing slash to the end of the link
然后我把电话线关掉了RewriteCond %{REQUEST_URI} !^/wp-jsonRewriteRule

结束

相关推荐

如何在网站页眉中显示javascript横幅?

我最近购买了一个主题,其中包括在标题中显示横幅的选项。横幅可以使用静态图像或javascript显示。我使用的特定javascript代码用于亚马逊横幅广告,并通过iframe显示在前端。使用静态图像,横幅将正确显示,如您在此处所见:http://capethemes.com/demo/portal/review/但是,使用javascript代码时,横幅不可见。在检查源代码时,我发现脚本标记和包含块的html都在那里,但缺少iframe元素。无论如何,我能够确定这是一个样式问题,但不确定如何解决它。以下