Hi
I've been trying to make a pretty url from:
index.php?page=home&par='.$params.'
where $params is an array passed in the url
using mod_rewrite:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*)/thanks$ index.php?id=$1¶m=$params [L]
The problem is that the variable $params is not passed in the url.
Thanks for your help in advance
Regards
Raf