url are now not / : Fixes #1054
This commit is contained in:
parent
ca6efbe2a6
commit
8a0cbf415d
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue