Redirect everything to index.php(将所有内容重定向到 index.php)
问题描述
我试图通过分解 $_SERVER['REQUEST_URI']
然后在结果之间切换来制作干净的 URL.
I'm trying to do clean URLs by exploding $_SERVER['REQUEST_URI']
and then switching between the results.
但是,一旦用户离开 index.php
,我假设我需要将他们重定向回 index.php
以处理他们想要的 URL达到.我怎样才能做到这一点?
However, once a user goes outside index.php
, I'm assuming I need to redirect them back to index.php
in order to process the URL they want to reach. How can I accomplish this?
例如,如果用户访问 www.domain.com/home/johndoe/...
我想要 index.php
(domain.com/index.php
) 以便它可以通过 request_uri
处理 /home/johndoe/
.
So for instance, if the user goes to www.domain.com/home/johndoe/...
I'd like index.php
(domain.com/index.php
) to be hit so that it can process the /home/johndoe/
via request_uri
.
推荐答案
.htaccess:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?param=$1 [QSA,L]
这篇关于将所有内容重定向到 index.php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将所有内容重定向到 index.php
基础教程推荐
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01