diff -E -u -r cake_1.1.7.3363/app/webroot/.htaccess cake/app/webroot/.htaccess --- cake_1.1.7.3363/app/webroot/.htaccess 2006-01-20 01:46:00.000000000 +0900 +++ cake/app/webroot/.htaccess 2006-09-07 12:02:38.015625000 +0900 @@ -2,5 +2,5 @@ RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f - RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] + RewriteRule ^.*$ index.php [L] diff -E -u -r cake_1.1.7.3363/cake/bootstrap.php cake/cake/bootstrap.php --- cake_1.1.7.3363/cake/bootstrap.php 2006-05-25 17:12:00.000000000 +0900 +++ cake/cake/bootstrap.php 2006-09-07 14:28:40.890625000 +0900 @@ -68,11 +68,7 @@ } } } else { - if (empty($_GET['url'])) { - $url = null; - } else { - $url = $_GET['url']; - } + $url = env('REQUEST_URI'); } if (strpos($url, 'ccss/') === 0) {