Hey All,
Brand new on the forum! I have a question for everyone. I am being told by whmcs support that the reason that a client completes a transaction and then does not see the complete.tpl page but instead sees a 404 error is because of issues with my htaccess file, as you can see below:
I need to find what issue is occurring within my htaccess file that would cause this. I just looked moments ago, and see nothing referenced within my htaccess file.
See here for htaccess file info:
HTACCESS.txt
---------------
RewriteEngine On
# Announcements
RewriteRule ^announcements/([0-9]+)/[a-z0-9_-]+\.html$
./announcements.php?id=$1 [L,NC]
RewriteRule ^announcements$ ./announcements.php [L,NC]
# Downloads
RewriteRule ^downloads/([0-9]+)/([^/]*)$
./downloads.php?action=displaycat&catid=$1 [L,NC]
RewriteRule ^downloads$ ./downloads.php [L,NC]
# Knowledgebase
RewriteRule ^knowledgebase/([0-9]+)/[a-z0-9_-]+\.html$
./knowledgebase.php?action=displayarticle&id=$1 [L,NC]
RewriteRule ^knowledgebase/([0-9]+)/([^/]*)$
./knowledgebase.php?action=displaycat&catid=$1 [L,NC]
RewriteRule ^knowledgebase$ ./knowledgebase.php [L,NC]
# OpenID Discovery Document
([url]http://openid.net/specs/openid-connect-discovery-1_0.html[/url])
RewriteRule ^.well-known/openid-configuration
./oauth/openid-configuration.php [L,NC]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]