gpt4 book ai didi

php - 在 CentOS7 中无法访问 Apache 上的 URL 链接

转载 作者:行者123 更新时间:2023-12-04 19:36:28 25 4
gpt4 key购买 nike

我有一个在 CentOS 7.0 上使用 PHP、httpd (Apache 2) 和 mod_security 的系统。这个应用程序不是我编写的,我只是操作和维护。

我有一个问题,我办公室的某些 PC 无法访问 Web 应用程序 URL。

这是网址:

This is origin URL ,它在此链接中有两个字符“//”:

enter image description here

url 中有两个“//”字符,某些 PC 无法访问。

如果我从“//”更改为“/”,则访问成功。

我想从“//”自动更改为“/”。

最佳答案

我也是越南人。

<?php

$uri = $_SERVER['REQUEST_URI'];

if (strpos($uri, '//') !== false) {
$uri = str_replace('//', '/', $uri);

header("Location: $uri");
}

这是变化:
BEFORE: http://127.0.0.1/test.php//?&mod=server
AFTER: http://127.0.0.1/test.php/?&mod=server

关于php - 在 CentOS7 中无法访问 Apache 上的 URL 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56880370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com