Need to Modify .htaccess file so that
www.abc.com/uid?1pd47f4s4g28a3f
Should get redirected to
www.abc.com/uid.php?id=1pd47f4s4g28a3f
I tried below Codes :
#short link
Options +MultiViews
RewriteEngine on
RewriteBase /
RewriteRule ^(.+)\.php$ /$1 [R,L]
RewriteCond %uid.php -f
RewriteRule ^(.*?)/?$ /$1.php [NC,END]