Question
SymLinks not being followed in htaccess
I have CentOs with Apache.
In my httpd.conf I have
Options FollowSymLinks
AllowOverride None
and further down
ServerAdmin me@mydomain.com
DocumentRoot /var/www/mydomain.com/public_html
ServerName www.mydomain.com
ServerAlias mydomain.com
ErrorLog /var/www/mydomain.com-error_log
CustomLog /var/www/mydomain.com-access_log common
Options +FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
And in my .htaccess in my public_html folder I have at the top:
RewriteEngine On
Options +FollowSymLinks
However, the links (e.g. a RewriteRule $ /error/mypage.htm [R=302,L]) are generated as:
/var/www/error/mypage.htm
rather than:
/var/www/mydomain.com/public_html/mypage.htm
any ideas?
thanks
Add a comment
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×