Settings
SSI~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Open the settings file and look for the following Text:
#
# To use server-parsedHTMLfiles
#
#AddType text/html .shtml
#AddHandler server-parsed .shtml
Delete the # symbol before the two lines of instructions AddType and AddHandler. The AddType command will require the server to use text or HTML as the content format of the returned file when returning any web page with an attachment file name of .shtml. AddHandler is used to instruct the server to send the file content to mod_include for processing. Afterwards, mod_include will determine how to respond to such a file. Next, look for the following text:
There will be a line of options line between this line of text and the corresponding. The original settings are: t Options Indexes FollowSymlinks Multiviews
Add Includes at the end of this line, and it will look like this:
Options Indexes Followmlinks Multiviews Includes
This is the request AP. ACHE executes the server-size includes program in ACHE . In order for these changes to take effect, we must
restart the server. Reactivate under Unix and execute "kill -HUP `cat /usr/local/apache/logs/httpd.pid`".
The above introduces the configuration of softassist.link to support SSI, including the content of softassist.link. I hope it will be helpful to friends who are interested in PHP tutorials.