From 665fcb561d65ae2157b7f664d3ff077b665c8f32 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Fri, 10 Apr 2015 15:46:42 +0200 Subject: [PATCH] Changed localDir default to empty No more double slashes --- README.md | 4 ++-- proxy.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4894655..e0c4805 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,9 @@ Where: * `example.com` is the target hostname * `80` is the target port (default: `80`) -* `/remoteDir` is the directory to point on on the target (default: `/`) +* `/remoteDir` is the directory to point on on the target (default: ``) * For example, if set to `/superapplication`, it will redirect to `example.com/superapplication` -* `/localDir` is the directory that contains the file. +* `/localDir` is the directory that contains the file (default: ``) * For example, if you need to type `mydomain.com/superproxy/index.php` to access this file, set this to `/superproxy` Then, create the `.htaccess` file in order to redirect every request made in `localDir` to `index.php` that will handle it. In most situations, you will onyl need the following line. diff --git a/proxy.php b/proxy.php index 04ca878..710492d 100755 --- a/proxy.php +++ b/proxy.php @@ -1,7 +1,7 @@