i am using godaddy hosting and addon domain. i want to make my long url to short url.
for example my url is follwing: www.example.com/events/landing_event.php?url=text-first
and i want following url: www.example.com/events/text-first
for this i am using following rewrite url in .htaccess file
RewriteRule ^([a-zA-Z0-9-/]+)$ events/landing_event.php?url=$1 [L]
RewriteRule ^([a-zA-Z0-9-/]+)/$ events/landing_event.php?url=$1 [L]
but this rewrite rule is not working. so please help how can i make short url.