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".

  1. To enable SEF URLs, first check and ensure you have mod_rewrite installed on your server
  2. Next go to Addons > FAQ > Settings and tick the box for "SEO Friendly URLs"
  3. Finally, you must also rename the file named htaccess.txt to .htaccess. in your root WHMCS directory

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]