The SaaS module automatically attempts to remove index.php from the URL after activation. On some server configurations, this may result in the error “No input file specified.”
To resolve this issue, please edit the .htaccess file located in your project root and replace the SaaS rewrite section with the code below.
# BEGIN SaaS Redirect Dont Not Edit
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
# END SaaS Redirect
For more information, please refer to the RISE CRM guide on removing index.php from the URL, especially, if you are using an Nginx server, follow the instructions below: https://risedocs.fairsketch.com/doc/view/47-remove-index-php-from-site-url