Forum Moderators: phranque
Here is htaccess code
RewriteCond %{HTTP_HOST} ^(xyz\.)abc.com
RewriteRule ^date index.php?option=com_dating&Itemid=456&cat_id=5370&lang=en&task=showtopDates [L]
and if I type "xyz.abc.com/date" it works perfectly fine
BUT i want to remove this date from the url and keep only "xyz.abc.com"
So i tried
RewriteCond %{HTTP_HOST} ^(xyz\.)abc.com
RewriteRule ^(.*)$ index.php?option=com_dating&Itemid=456&cat_id=5370&lang=en&task=showtopDates [L]
But it shows a blank page ..no 500internal server error just a blank page
What should I do ?