#735 | $url_suffix = isset($_ENV['_config']['url_suffix']) ? $_ENV['_config']['url_suffix'] : '.html'; |
#736 | $url_suffix_len = strlen($url_suffix); |
#737 | if(substr($uri, 0, 6) == 'index_' && substr($uri, -$url_suffix_len) == $url_suffix) { |
#738 | $newurl = substr($uri, 0, -$url_suffix_len); |
#739 | preg_match("/^index_(\d+)$/i", $newurl, $mat); |
#740 | if( isset($mat[1]) ){ |
#741 | if(!$this->integer_check($mat[1])){core::error404();} |
#742 | $_GET['control'] = 'index'; |
#743 | $_GET['action'] = 'index'; |
#744 | $_GET['mid'] = 2; |