티스토리 뷰
defined('BASEPATH') OR exit('No direct script access allowed');
class MY_Router extends CI_Router {
protected function _set_default_controller() {
if (empty($this----->default_controller)) {
show_error('Unable to determine what should be displayed. A default route has not been specifieMY_Routerd in the routing file.');
}
// Is the method being specified?
if (sscanf($this->default_controller, '%[^/]/%s', $class, $method) !== 2) {
$method = 'index';
}
// This is what I added, checks if the class is a directory
if( is_dir(APPPATH.'controllers/'.$class) ) {
// Set the class as the directory
$this->set_directory($class);
// $method is the class
$class = $method;
// Re check for slash if method has been set
if (sscanf($method, '%[^/]/%s', $class, $method) !== 2) {
$method = 'index';
}
}
if ( ! file_exists(APPPATH.'controllers/'.$this->directory.ucfirst($class).'.php')) {
// This will trigger 404 later
return;
}
$this->set_class($class);
$this->set_method($method);
// Assign routed segments, index starting from 1
$this->uri->rsegments = array(
1 => $class,
2 => $method
);
log_message('debug', 'No URI present. Default controller set.');
}
}
'Programming Language > PHP' 카테고리의 다른 글
| PHP에서 파일 확장자 구하기 (0) | 2018.11.04 |
|---|---|
| PHP에서 서버측 캐시 컨트롤하는 방법 (0) | 2018.11.04 |
| 설치형 방문자 분석 프로그램(Analytics program) (0) | 2018.11.03 |
| PHP uksort와 usort 사용자정의 배열 정열 (0) | 2016.04.21 |
| Windows 7 64bit 환경에서 Apache, PHP, MySQL 설치 (1) | 2015.01.29 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- php
- DART
- Entity Framework Core
- Fedora
- express
- high1
- 전자정부
- .NET Core
- egoverment
- JSP
- ubuntu
- Linux
- eGovFrame
- jQuery
- c#
- MySQL
- dotnet core
- Java
- Spring
- Flutter
- 자바
- egov
- CentOS
- 스프링
- Eclipse
- asp.net core
- MariaDB
- Windows
- 이클립스
- 하이원
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
글 보관함