gpt4 book ai didi

php 使用 htaccess 获取路径信息

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:46:05 25 4
gpt4 key购买 nike

这是我的 index.php 文件:

<?php

echo $_SERVER['PATH_INFO'];

?>

这是我的 htaccess 文件:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /something
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>

如果我输入something/index.php/hello,结果应该是/hello
但是如果我说什么/你好,它会说
未定义索引:/Library/WebServer/Documents/xcart/index.php 第 3 行中的 PATH_INFO
我怎样才能得到相同的结果?

最佳答案

尝试:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/(.*)/?$ something/$1
</IfModule>

关于php 使用 htaccess 获取路径信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15017896/

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