个人工具

“UbuntuHelp:ServerSideIncludes”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第39行: 第39行:
 
AddType text/html .shtml
 
AddType text/html .shtml
 
AddOutputFilter INCLUDES .shtml
 
AddOutputFilter INCLUDES .shtml
 +
DirectoryIndex index.shtml
 
</Directory>
 
</Directory>
 
</nowiki></pre>
 
</nowiki></pre>
 
You need to add `+Includes` to the end of the end of the `Options`, and two new lines after the commented-out lines.
 
You need to add `+Includes` to the end of the end of the `Options`, and two new lines after the commented-out lines.
 +
You can leave out the final added line if you don't want includes in index pages.
 
=== Restart Apache2 ===
 
=== Restart Apache2 ===
 
<pre><nowiki>
 
<pre><nowiki>

2008年10月19日 (日) 17:15的版本

How to set up Server Side Includes on Apache, assuming you already have Apache installed.

Enable the Includes module

cd /etc/apache2/mods-enabled
sudo ln -s /etc/apache2/mods-available/include.load

This creates a SymbolicLink in mods-enabled of the config file in mods-available. See also RootSudo.

Editing config

Open the /sites-available/default file...

gksudo gedit /etc/apache2/sites-available/default

find this section...

<Directory /var/www/>
	Options Indexes FollowSymLinks MultiViews
	AllowOverride None
	Order allow,deny
	allow from all
	# This directive allows us to have apache2's default start page
	# in /apache2-default/, but still have / go to the right place
	# Commented out for Ubuntu
	#RedirectMatch ^/$ /apache2-default/
</Directory>

and edit it to look like this:

<Directory /var/www/>
	Options Indexes FollowSymLinks MultiViews +Includes
	AllowOverride None
	Order allow,deny
	allow from all
	# This directive allows us to have apache2's default start page
	# in /apache2-default/, but still have / go to the right place
	# Commented out for Ubuntu
	#RedirectMatch ^/$ /apache2-default/
	AddType text/html .shtml
	AddOutputFilter INCLUDES .shtml
	DirectoryIndex index.shtml
</Directory>

You need to add `+Includes` to the end of the end of the `Options`, and two new lines after the commented-out lines. You can leave out the final added line if you don't want includes in index pages.

Restart Apache2

sudo apache2ctl restart

Test it works

Create a SSI test file and save it under /var/www/ssi-test.shtml.

<html>
<head>
<title>SSI Test Page</title>
</head>
<body>
<!--#echo var="DATE_LOCAL" -->
</body>
</html>

In your WebBrowser, go to `http://127.0.0.1/ssi-test.shtml`. If your browser displays the local date (eg Saturday, 06-Aug-2005 23:05:21 CEST), SSI is working!


Based on Rafael Gattringer's Ubuntu Apache2 SSI Installation guide, with permission.