wordpress站点:Apache重定向URI路径

时间:2017-06-26 21:54:35

标签: php wordpress apache redirect

我们有一个wordpress网站http://10.10.10.10/sitename/

当用户在搜索栏中输入“字符串”并按Enter键时,请求将发送到http://10.10.10.10/?s=并被抛出默认的Apache index.html。

预期行为:应该将用户发送到http://10.10.10.10/sitename/?s=而不是http://10.10.10.10/?s=

从/?s =到/ sitename /?s =

实现重定向的可能方法有哪些?

谢谢,

1 个答案:

答案 0 :(得分:-1)

你必须使用wordpress

的wp_redirect()函数
$url ="http://10.10.10.10/sitename/?s=";
    wp_redirect($url);

这是此功能的wordpress documentation页面