PHP通过.htaccess重定向用户并将请求的URL传递给php?

时间:2012-08-02 01:08:58

标签: php .htaccess url-rewriting

说我正在尝试访问:

mysite.com/foo/bar/

我也想要:

RewriteEngine On
RewriteCond %{REQUEST_URI} !=/index.php
RewriteRule .* /index.php

然后:

$url = $_SERVER['PHP_SELF'];
echo $url;

显示:

foo/bar/

目前正在:

index.php

(显然我不知道,但你明白了我想要实现的目标)

1 个答案:

答案 0 :(得分:2)