gpt4 book ai didi

php - 将所有内容重定向到 index.php

转载 作者:可可西里 更新时间:2023-11-01 13:05:06 25 4
gpt4 key购买 nike

我试图通过分解 $_SERVER['REQUEST_URI'] 然后在结果之间切换来做干净的 URL。

但是,一旦用户离开 index.php,我假设我需要将他们重定向回 index.php 以便处理他们想要的 URL达到。我怎样才能做到这一点?

例如,如果用户访问 www.domain.com/home/johndoe/... 我想要 index.php ( domain.com/index.php) 被命中,以便它可以通过 request_uri 处理 /home/johndoe/

最佳答案

.htaccess:

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?param=$1 [QSA,L]

关于php - 将所有内容重定向到 index.php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2669258/

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