将每个请求重定向到index.php并解释该请求

发布于 2024-12-28 21:28:37 字数 363 浏览 1 评论 0原文

我正在使用 Apache 2.2 和 PHP 5.3.8。 我应该如何配置 .htaccess 来重定向每个请求到index.php?

我想要像 stackoverflow 或 facebook 那样的网址,例如: http://mywebsite.com/fancypage 其中 fancypage 不是服务器上的目录,而只是一个参数。

所以我想我需要将每个请求重定向到一个 php 页面,其中一些代码可以解释 $_SERVER['REQUEST_URI'] 字符串。这是正确的方法吗?重定向后 $_SERVER['REQUEST_URI'] 仍然可用吗?

I'm using Apache 2.2 and PHP 5.3.8.
How should I configure .htaccess to redirect every request do index.php?

I'd like to have URLs like those of stackoverflow or facebook, as: http://mywebsite.com/fancypage
where fancypage isn't a directory on the server but just a parameter.

So I thought I needed to redirect every request to a php page, where some code can interpret the $_SERVER['REQUEST_URI'] string. Is this the right way? will $_SERVER['REQUEST_URI'] still be available after the redirection?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凌乱心跳 2025-01-04 21:28:37

尝试将以下内容添加到站点根目录中的 .htaccess 文件中。

它将把所有请求(现有文件/目录除外)发送到index.php。

原始请求将在 request 参数中提供。

RewriteEngine On
RewriteBase /

#skip existing files or directories
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d
#everything else goes to index.php
RewriteRule ^ index.php?request=%{THE_REQUEST} [L]

Try adding the following to the .htaccess file in the root directory of your site.

It will send all requests (except for existing files/dirs) to index.php.

The original request will be available in the request param.

RewriteEngine On
RewriteBase /

#skip existing files or directories
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d
#everything else goes to index.php
RewriteRule ^ index.php?request=%{THE_REQUEST} [L]
顾铮苏瑾 2025-01-04 21:28:37

您感兴趣的是 Apache 的 url_rewrite 函数。我建议您访问这两个链接并进行一些研究:

What you are interested in is Apache's url_rewrite function. I suggest you visit these two links and research it a bit:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文