gpt4 book ai didi

PHP 使用 GET 重定向

转载 作者:行者123 更新时间:2023-11-29 20:39:05 26 4
gpt4 key购买 nike

<?php if ($_SERVER['REQUEST_METHOD'] == 'GET') {

if (isset($_GET['type'])) {
switch ($_GET['type']) {
case 'big':
header('Location: HOME');
// Query can be executed here...
exit;
break;

?>

<div class="container-fluid">
<div class="row">
<a href="?type=big">
<div class="col-md-6 big">
<h1>Big</h1>

这是我的两组代码。 PHP 和 HTML。但是每当我点击图片时。 URL 变为 http://WEBSITE/rooms?type=big ,但是它不会执行要转到“主页”页面的重定向部分。

我的 web.config 目前是

<rule name="Imported Rule 6" stopProcessing="true">
<match url="^rooms([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=rooms&amp;type={R:1}" appendQueryString="false" />
</rule>

最佳答案

尝试:header("刷新:0; url=index.php");

关于PHP 使用 GET 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38689177/

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