Search Engine Friendly URLs are where a URL which once was "/index.php?m=faq&a=cat&display=How-do-I-access-my-control-panel" becomes "/faq/How-do-I-access-my-control-panel".
FAQs Manager v1.0.0 > v2.0.3 Add the code below to .htaccess file
# FAQ Home RewriteRule ^faq$ ./index.php?m=faq [L,NC] # FAQ Categories RewriteRule ^faq/([^/]+)$ ./index.php?m=faq&a=cat&display=$1 [L,NC]
FAQs Manager v3.0.0 Add the code below to .htaccess file
RewriteRule ^faq$ ./index.php?m=faq [L,NC] RewriteRule ^faq/$ ./index.php?m=faq [L,NC] # FAQ Categories RewriteRule ^faq/([^/]+)$ ./index.php?m=faq&p=category&display=$1 [L,NC] RewriteRule ^faq/([^/]+)/$ ./index.php?m=faq&p=category&display=$1 [L,NC]