Gossamer Forum
Home : General : Perl Programming :

.htaccess / ssi calls

Quote Reply
.htaccess / ssi calls
What do I need to do to my .htaccess to allow SSI calls?
Quote Reply
Re: .htaccess / ssi calls In reply to
For just basic includes, you just need:

Options Includes

... or:

Options IncludesNOEXEC

You may need to combine it with other options, like FollowSymLinks or SymLinksIfOwnerMatch.

If you have any doubts, you should read the Apache docs on the Options directive:

http://www.apache.org/...od/core.html#options

... and more important, the security docs:

http://www.apache.org/...c/security_tips.html

HTH,
adam

[This message has been edited by dahamsta (edited January 17, 2000).]