将每个请求重定向到index.php并解释该请求
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将以下内容添加到站点根目录中的 .htaccess 文件中。
它将把所有请求(现有文件/目录除外)发送到index.php。
原始请求将在
request
参数中提供。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.您感兴趣的是 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: