Changeset 6644
- Timestamp:
- 09/10/08 21:45:52 (4 months ago)
- Files:
-
- 1 modified
-
trunk/rewrite.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rewrite.php
r6632 r6644 10 10 } 11 11 if (!empty($_SERVER['PRELOAD_CONFIG']) && file_exists('config.php')) require_once ROOT."/config.php"; 12 // IIS 7.0 and URL Rewrite Module CTP 12 13 if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) 13 $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL']; 14 $_SERVER['REQUEST_URI'] = @iconv('cp949', 'utf-8', $_SERVER['HTTP_X_ORIGINAL_URL']); 15 // IIS 5.x/6.0 and Ionics ISAPI Rewrite Filter 16 if (isset($_SERVER['HTTP_X_REWRITE_URL'])) 17 $_SERVER['REQUEST_URI'] = urldecode($_SERVER['HTTP_X_REWRITE_URL']); 14 18 /* Retrieve Access Parameter Information. */ 15 19 $accessInfo = array(
