Welcome Guest, Not a member yet? Register   Sign In
index.php on https not working .htaccess
#5

It is an Apache server, right? Must be server misconfiguration. Apparently your server has a different way to work on his SSL port, and is ignoring the '.htaccess' file. You need to check if the application directory has permission to use the '.htaccess' file to rewrite urls. Well, on Apache server, you just need to set "AllowOverride All" in SSL mode too. I put a global defnition to Apache like this:

Code:
<Directory "/var/www/my-app-dir">
Options Indexes FollowSymLinks Multiviews
AllowOverride All
Order allow,deny
allow from all
</Directory>

Wink
Reply


Messages In This Thread
RE: index.php on https not working .htaccess - by BabalooAye - 07-15-2016, 02:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB