I having issue for re-writing url from
http://localhost/cs/compare?slug=wash-safe-industries.html
to
http://localhost/cs/compare/wash-safe-industries.html
I have tried following code in .htaccess but does not work for me, I have also searched various sites but still facing issues
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?compare/(.*?)/?$ /compare.php?slug=$1 [L]
Also tried following line of code
RewriteRule ^cs/(.*)$ cs/compare.php?slug=$1 [L,QSA]
Please help me out thanks