Jump to content
  • 0

Links In Admin Portal Are Redirecting To Homepage


Question

Posted

Hi there,

 

I'm new to blesta and i'm having problem such as when clicking on package, it will redirect to homepage which is the client portal page. even billing e.g 

 

I'm using htaccess to force SSL. could this be the reason? any advise on this. 

 

Thanks! 

3 answers to this question

Recommended Posts

  • 0
Posted

This has been solved. I reinstall again and it is working now. Thanks! The reason i didn't include htaccess when I install blesta. that is the reason why index.php is still appearing in the url link. I've include htaccess during installation and it is working now. Installing Admin tool and clearing cache would help too. Thanks again. 

  • 0
Posted

Found out that the links does have index.php and it is not vaild that is the reason why it is redirecting to homepage. Any advise on this? Thanks! 

  • 0
Posted

My htaccess is as below

########################################################
# package:    minPHP
# filename:   .htaccess
########################################################

<Files ~ "\.(pdt)$">
   order deny,allow
   deny from all
</Files>

# Protect against Clickjacking
#Header append X-Frame-Options "SAMEORIGIN"

RewriteEngine on

# Force HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=307,NE,L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php

RewriteCond %{REQUEST_URI} ^(.*)/install.php$
RewriteRule install.php %1/install/ [R=301,L]

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...