如何在 Windows/IIS 服务器上获取当前页面的完整 URL?

How can I get the current page#39;s full URL on a Windows/IIS server?(如何在 Windows/IIS 服务器上获取当前页面的完整 URL?)
本文介绍了如何在 Windows/IIS 服务器上获取当前页面的完整 URL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我将 WordPress 安装移动到 Windows 上的新文件夹/IIS 服务器.我正在 PHP 中设置 301 重定向,但它似乎不起作用.我的帖子 URL 具有以下格式:

I moved a WordPress installation to a new folder on a Windows/IIS server. I'm setting up 301 redirects in PHP, but it doesn't seem to be working. My post URLs have the following format:

http:://www.example.com/OLD_FOLDER/index.php/post-title/

我不知道如何获取 URL 的 /post-title/ 部分.

I can't figure out how to grab the /post-title/ part of the URL.

$_SERVER["REQUEST_URI"] - 每个人似乎都推荐 - 返回一个空字符串.$_SERVER["PHP_SELF"] 只是返回 index.php.这是为什么,我该如何解决?

$_SERVER["REQUEST_URI"] - which everyone seems to recommend - is returning an empty string. $_SERVER["PHP_SELF"] is just returning index.php. Why is this, and how can I fix it?

推荐答案

也许,因为你在 IIS 下,

Maybe, because you are under IIS,

$_SERVER['PATH_INFO']

是您想要的,基于您用来解释的网址.

is what you want, based on the URLs you used to explain.

对于 Apache,您将使用 $_SERVER['REQUEST_URI'].

For Apache, you'd use $_SERVER['REQUEST_URI'].

这篇关于如何在 Windows/IIS 服务器上获取当前页面的完整 URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

In PHP how can you clear a WSDL cache?(在 PHP 中如何清除 WSDL 缓存?)
failed to open stream: HTTP wrapper does not support writeable connections(无法打开流:HTTP 包装器不支持可写连接)
Stop caching for PHP 5.5.3 in MAMP(在 MAMP 中停止缓存 PHP 5.5.3)
Caching HTTP responses when they are dynamically created by PHP(缓存由 PHP 动态创建的 HTTP 响应)
Memcached vs APC which one should I choose?(Memcached 与 APC 我应该选择哪一个?)
What is causing quot;Unable to allocate memory for poolquot; in PHP?(是什么导致“无法为池分配内存?在 PHP 中?)