![]() |
|
Friendly URLs - Printable Version +- WHMCS Services Forum (https://forum.whmcsservices.net) +-- Forum: WS Modules (https://forum.whmcsservices.net/forumdisplay.php?fid=8) +--- Forum: Addons Modules (https://forum.whmcsservices.net/forumdisplay.php?fid=9) +---- Forum: Agree Terms (https://forum.whmcsservices.net/forumdisplay.php?fid=21) +---- Thread: Friendly URLs (/showthread.php?tid=245) |
Friendly URLs - wssupport - 11-16-2025 ![]() If you choose no, then you don't need to do anything If you choose Yes, then you need to edit the .htaccess I have added the Rewrite rules to .htaccess in the root of our WHMCS install, but the rules are being ignored, so all related links are giving a 404 error. ANSWER: If Friendly URLs are enabled, the rules need to go before these in the existing .htaccess; otherwise, they get ignored. Here is what you need to add #Agree Terms # Ensure "agreeterms/" loads index.php?m=agreeterms RewriteRule agreeterms/view/accepted/?$ %{REQUEST_URI}/index.php?m=agreeterms&view=accepted [NC,L] RewriteRule agreeterms/?$ %{REQUEST_URI}/index.php?m=agreeterms [NC,L] |