I have installed a forum software called phpBB. Inside it's server config file, .htaccess I see the following:
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
# RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
And then this:
#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
# Options +FollowSymLinks
So for the first piece of code I looked up my phpinfo();
and it said that my server API is CGI/FastCGI
, PHP version 5.5.15. I belive that's what the comment means? So should I use the commented code and what does it do anyway?
Secondly I don't have Options +FollowSymLinks
inside my root .htaccess file because I need some understanding on what it does, perhaps I'll Google it now...
Thanks in advance - any ideas?