I have a given URL:
http://www.simtalltd.com/hebrew/index.php?option=com_content&task=view&id=15&Itemid=29
And I need to get all the string after: http://www.simtalltd.com/
Like this: hebrew/index.php?option=com_content&task=view&id=15&Itemid=29
I've tried this code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.asp?rewrite_url=$1 [QSA,L,NU]
But I just get: hebrew/index.php
What is the correct code?