.htaccess - url rewriting -- the url rewriting code giving "Object not found!" error -


i trying redirect website links

1, original link

  • www.website.com/products.php?id=abcd12345

2, browser see

  • www.website.com/products/abcd12345-something1-something2.html

so want redirect second link request first link -- present code giving "object not found!" error

below code in .htaccess file

 rewriteengine on # turn on rewriting engine rewriterule ^(.*)products/([a-za-z0-9]+)(.*) $1/products.php?id=$2  [nc,l] 

any thankful.


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -