Reputation: 93
I'm using symfony and I just set up ssl on my server. Then when I send a request https de my app the symfony's htacces doesn't seem to rewrite the url, instead I see the tree-folder. Does someone knows which rule to set up? Thanks for your help
Upvotes: 0
Views: 78
Reputation: 1507
It looks like your SSL VirtualHost configuration is missing AllowOverride
directive (and PHP stack as well).
See: How to Set AllowOverride all
Upvotes: 1