cancel
Showing results for 
Search instead for 
Did you mean: 

Magento using mod_fcgi instead of the standard mod_php

SOLVED

Magento using mod_fcgi instead of the standard mod_php

I am trying to get Magento working in my mod_fcgi environment. What .htaccess changes need to happen?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento using mod_fcgi instead of the standard mod_php

Okay so here's what I did to get Magento working in an fcgi (Fast CGI) environment.

 

  1. In the file .htaccess (in your Magento root installation directory):
    Change +FollowSymLinks to +SymLinksIfOwnerMatch
  2. In the file pub/.htaccess:
    Change +FollowSymLinks to +SymLinksIfOwnerMatch
  3. In the file pub/media/.htaccess:
    Change Options All -Indexes to Options -Indexes
    Change +FollowSymLinks to +SymLinksIfOwnerMatch

View solution in original post

2 REPLIES 2

Re: Magento using mod_fcgi instead of the standard mod_php

Okay so here's what I did to get Magento working in an fcgi (Fast CGI) environment.

 

  1. In the file .htaccess (in your Magento root installation directory):
    Change +FollowSymLinks to +SymLinksIfOwnerMatch
  2. In the file pub/.htaccess:
    Change +FollowSymLinks to +SymLinksIfOwnerMatch
  3. In the file pub/media/.htaccess:
    Change Options All -Indexes to Options -Indexes
    Change +FollowSymLinks to +SymLinksIfOwnerMatch

Re: Magento using mod_fcgi instead of the standard mod_php

Please comment if there is something I missed or if you have a more comments on a better practice solution.