I need to rewrite the following url
component/iproperty/?view=property&id=53
to go to
redirect.php?id=53
using the .htaccess file
the id=53 can be any id at all (always a number)
In your .htaccess ...
RewriteEngine On
RewriteRule ^component/iproperty/?view=property&id=([0-9]+)?$ redirect.php?id=$1 [L]
RewriteRule$ before the query string. Now I'm confused haha