<?php
//
// ½ºÅ¸ÀÏ½ÃÆ®¸¦ ÀÔ¸À´ë·Î ÁÖ¹«¸£±â À§ÇØ
//
define("_GNUBOARD_", TRUE);

include_once("./_common.php");

// ÆÄÀÏÀÌ ¾ø´Ù¸é...
if (!file_exists("{$g4['path']}/{$_SERVER['PATH_INFO']}") || strtolower(strstr($_SERVER['PATH_INFO'], '.')) != '.css') {
	$tmp_dir = str_replace("/css.php", "", $_SERVER['SCRIPT_NAME']);
	header("Location: {$g4['url']}/", false);
	exit;
} else {
	header("Content-Type: text/css", false);
	include "{$g4['path']}/{$_SERVER['PATH_INFO']}";
	exit;
}
?>
