I want to send all adress url which the user type in my domain as
QUERY_STRING to root directory to file index.php
with parameter url=QUERY_STRING
example if the user type www.mydomain.com/abc/123
it will be www.mydomain.com/index.php/?url=abc/123
my htaccess code don't send the parameter url I don't know why:
# 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]
my php file:
<?php
if ($GET['url']){
$url = $GET['url'];
echo ($url.'<br />');
}
?>
we are in root directory.
many thanks