diff --git a/ChangeLog b/ChangeLog
index 5914bf159..06e5f72db 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,8 @@ $Source$
* import.php: Do not show query in different charset (bug #1028634).
* libraries/auth/cookie.auth.lib.php: Keep database and table selection
over login, needed for RFE #1278312.
+ * Documentation.html: Add example for redirects like
+ /phpMyAdmin/database/table (RFE #1278312).
2005-10-07 Marc Delisle
+ Yes. Out of the box, you can use URLs like
+ http://server/phpMyAdmin/index.php?db=database&table=table. If you
+ want http://server/phpMyAdmin/database/table URLs, you need to do some
+ configuration. Following lines apply only for Apache web server. First make sure,
+ that you have enabled some features within global configuration. You need
+ Options FollowSymLinks
and AllowOverride
+ FileInfo
enabled for directory where phpMyAdmin is installed. Then
+ you just need to create following .htaccess
file in root
+ folder of phpMyAdmin installation (don't forget to change directory name
+ inside of it):
+
+RewriteEngine On +RewriteBase /path_to_phpMyAdmin +RewriteRule ^([a-zA-Z0-9_]*)/([a-zA-Z0-9_]*)$ index.php?db=$1&table=$2 [R] +RewriteRule ^([a-zA-Z0-9_]*)$ index.php?db=$1 [R] ++