• 智能AI问答!更聪明、更完整、原创作!
  • 一款基于GPT的超级AI机器人,可以回答问题、聊天、创作、写文案!

如何设置能让网址https://www.wentiku.cn/index.php/重定向到https://www.wentiku.cn/

发布于 2024-04-18 19:28:22

您可以尝试以下方法将网址重定向到https://www.wentiku.cn/:

  1. 在应用目录下的config.php文件中,添加以下代码:
if (isset($_SERVER['REQUEST_URI']) && strpos($_SERVER['REQUEST_URI'], '/index.php/') !== false) {
    header('HTTP/1.1 301 Moved Permanently');
    header('Location: https://www.wentiku.cn' . str_replace('/index.php/', '/', $_SERVER['REQUEST_URI']));
    exit();
}
  1. 修改.htaccess文件,添加以下代码:
RewriteEngine On
RewriteRule ^index\.php/(.*)$ /$1 [R=301,L]

以上两种方法都可以将网址重定向到https://www.wentiku.cn/,建议选择一种适合您的方法进行设置。

0 条评论

发布
问题

在线
客服