我想发送用户在我的域中键入的所有地址 url
QUERY_STRING 到根目录到文件 index.php
带参数 url=QUERY_STRING
例如,如果用户类型www.mydomain.com/abc/123
这将是www.mydomain.com/index.php/?url=abc/123
我的 htaccess 代码不发送参数 url 我不知道为什么:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
RewriteEngine On
RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
我的 php 文件:
<?php
if ($GET['url']){
$url = $GET['url'];
echo ($url.'<br />');
}
?>
we are in root directory.
非常感谢