任何QUERY_STRING發送到我的index.php要發送的所有ADRESS網址在我的域名作爲我如何通過htaccess的
QUERY_STRING到根目錄下的用戶類型index.php文件
帶參數的URL,其= QUERY_STRING
如果例如用戶類型www.mydomain.com/abc/123
它將www.mydomain.com/index.php/?url=abc/123
我的HT訪問代碼不發送參數的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.
千恩萬謝
我的問題是,當用戶鍵入QUERY_STRING htaccess不發送QUERY_STRING到index.php你可以在這裏看到它[http://kidslearning4fun.com/](http://kidslearning4fun.com/) – rotem
沒關係我的回答,閱讀troelskn的答案,我意識到我誤解了這個問題。對不起;) –