I have previously posted a question but I am not satisfied with the answers. I have a url, for example
http://example.com/details.php?a=100&b=101&slug=power-programming-in-php
I want to write it by rewrite rule as
http://example.com/power-programming-in-php
I am currently using a rule :
RewriteRule ^([a-zA-Z0-9]*-[a-zA-Z0-9]*)$ paper-ads-details.php?a=$1&b=$2&slug=$3 [L]
I am now stuck, does anyone have any suggestions?