I have to change the url through web.config from all-products?id=Mw==
to all-products/Mw==
for every page in site.
Please let me know.
I have to change the url through web.config from all-products?id=Mw==
to all-products/Mw==
for every page in site.
Please let me know.
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^all\-products/([^/]+)$ /all\-products?id=$1 [L]