url are now not / : Fixes #1054

This commit is contained in:
Benjamin Sonntag 2007-08-26 20:41:32 +00:00
parent ca6efbe2a6
commit 8a0cbf415d
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -1,5 +1,6 @@
alternc (0.9.6.5) testing; urgency=low
* Redirect are now done on http://$url$1 base, not $url/$1 (#1054)
* Patch to install properly apache and apache-ssl modules
* We copy /etc/squirrelmail/default_pref content for new accounts in _createpop (#1015)
* we configure postfix even if main.cf don't currently exist (#1009)

View File

@ -278,7 +278,7 @@ add_host() {
$TYPE_URL)
mkdir -p "$htaccess_directory"
(echo "RewriteEngine on"
echo "RewriteRule (.*) ${value}/\$1 [R,L]"
echo "RewriteRule (.*) ${value}\$1 [R,L]"
) > "$htaccess_directory/.htaccess"
ln -snf "$htaccess_directory" "$vhost_directory"
;;