您可以尝试以下方法将网址重定向到https://www.wentiku.cn/:
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();
}
RewriteEngine On
RewriteRule ^index\.php/(.*)$ /$1 [R=301,L]
以上两种方法都可以将网址重定向到https://www.wentiku.cn/,建议选择一种适合您的方法进行设置。