是否可以将 ./index.php?facebook 重定向到 ./facebook.php?如果可以,该怎么做?
提前谢谢了,
答案1
至少有两种方法可以做到这一点。
- 使用 Apache 的
mod_rewrite
:
重写引擎开启 RewriteCond %{QUERY_STRING} =facebook [NC] 重写规则 (.*)/index.php$$1/facebook.php [R,L]
- 在
index.php
PHP 脚本本身中(我的 PHP 很生疏;请将其视为伪代码):
如果(设置($_GET['facebook'])){ header('位置:facebook.php'); 出口; }