Parent Directory
|
Revision Log
|
Revision Graph
print the ServerName variable properly in the redirect template
| 1 | <VirtualHost *:<?php print $site_port; ?>> |
| 2 | <?php if ($site_mail) : ?> |
| 3 | ServerAdmin <?php print $site_mail; ?> |
| 4 | <?php endif;?> |
| 5 | |
| 6 | ServerName <?php print $site_url; ?> |
| 7 | |
| 8 | <?php if (is_array($aliases)) : |
| 9 | foreach ($aliases as $alias) : ?> |
| 10 | ServerAlias <?php print $alias; ?> |
| 11 | <?php |
| 12 | endforeach; |
| 13 | endif; ?> |
| 14 | |
| 15 | RedirectMatch permanent ^(.*) http://<?php print $site_url ?>$1 |
| 16 | </VirtualHost> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |