From d0a8c4e5b6afbcb5689e3fdaed9047cbec84b822 Mon Sep 17 00:00:00 2001 From: rGaillard Date: Mon, 24 Sep 2012 13:57:43 +0000 Subject: [PATCH] // Fix #PSCFV-4323 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17505 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Tools.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/classes/Tools.php b/classes/Tools.php index acef48697..e44561cfc 100644 --- a/classes/Tools.php +++ b/classes/Tools.php @@ -1517,7 +1517,8 @@ class ToolsCore if ($disable_multiviews) fwrite($write_fd, "\n# Disable Multiviews\nOptions -Multiviews\n\n"); - fwrite($write_fd, "RewriteEngine on\n\n"); + fwrite($write_fd, "RewriteEngine on\n"); + fwrite($write_fd, "RewriteBase /\n\n"); // Webservice fwrite($write_fd, 'RewriteRule ^api/?(.*)$ '."webservice/dispatcher.php?url=$1 [QSA,L]\n\n");