搜索表单错误404

时间:2015-07-04 20:20:14

标签: php wordpress .htaccess redirect

当我尝试在我的网站上搜索某些内容时,我收到错误404,我的搜索表单代码如下所示

<form method="get" class="search-form" id="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<input type="search" class="search-field" placeholder="<?php _e('Search form', 'fukasawa'); ?>" name="s" id="s" />
<a id="searchsubmit" class="search-button" onclick="document.getElementById('search-form').submit(); return false;"><div class="genericon genericon-search"></div></a>

我将我的主页网站重定向到另一个网址,所以即时通讯就是问题,例如

Mysite example.com现已重定向到example.com/front-page

因此,当我搜索某些内容时,它现在会添加/ front-page。

以前只有Mysite example.com和没有/ front-page的搜索

我做了重定向导致我的网站有时无法响应,我得到一个空白页

这是我用来在htaac​​cess文件夹中重定向我的网站的代码

RewriteEngine On
RewriteRule ^$ http://example.com/front-page [R=301,L]

0 个答案:

没有答案