gpt4 book ai didi

PHP - 使用 pathinfo 变量使相对路径不起作用

转载 作者:可可西里 更新时间:2023-10-31 23:38:15 27 4
gpt4 key购买 nike

我希望自己实现某种 cms。我看到我可以捕获 Apache 环境变量,称为 PATH_INFO,所以这样我可以在我的网站上创建动态部分(就像 joomla 一样)。

例如:

stackoverflow.com/index.php/section1/article22

目前我正在开发一个函数来找出请求的部分和文章,方法是:

$url_seccion = $_SERVER['PATH_INFO'];
$secciones_array = array_values(array_filter(explode('/', $url_seccion)));

这部分工作正常,我遇到的问题是我现在拥有的所有相对路径都已损坏。有人可以向我解释为什么会发生这种情况以及我该怎么做才能解决它? (请不要告诉我我必须使用绝对路径...)

最佳答案

例子:

$url = "stackoverflow.com/index.php/section1/article22";
$myArray = array_slice( explode('/', $url), 2 );
echo "section: ". $myArray[0] ."<br /> article: ". $myArray[1]."<br />";
if(isset($myArray[0])) {
$section = $myArray[0];
} else {
$section = "";
}

if(isset($myArray[1])) {
$article = $myArray[1];
} else {
$article = "";
}

switch(strtolower($section)) {
default:
echo "home";
break;
case 'section1':
echo "function for find and show my article: ". $article;
break;
}

要使用保存在 db 中的部分,您可以使用 select 找到它的 id,然后找到 Article

要将所有请求重定向到 index.php 使用:

.htaccess

Options -Indexes +FollowSymLinks
RewriteEngine On
RewriteBase /

RewriteCond $0 !^(index\.php|css|js|img)
RewriteRule ^(.*)$ index.php [L]

索引.php:

$url = addslashes($_SERVER['REQUEST_URI']);
$myArray = array_slice( explode('/', $url), 1 );

关于PHP - 使用 pathinfo 变量使相对路径不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34838811/

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