각종 팁&정보를 나누는 곳입니다.
누군가에게 도움이 된다 싶으시면 언제라도 포스팅 :)
글 등록하기 | 내글 관리하기 | 연재글 | 보관함
특정 디렉토리 php 실행하기
첨부파일 https://imweb.eond.com/webtip/408120
# block direct access to templates, XML schemas, config files, dotfiles, environment info, etc.
location ~ ^/modules/editor/(skins|styles)/.+\.html$ {
   # pass
}
location ~ ^/(admin/help|common/manual)/.+\.html$ {
   # pass
}
location ~ ^/(addons|common/tpl|files/ruleset|(m\.)?layouts|modules|plugins|themes|widgets|widgetstyles)/.+\.(html|xml)$ {
   return 403;
}
location ~ ^/misc/.+\.php$ {
   fastcgi_pass unix:/run/php/pool.eond.sock;
   include snippets/fastcgi-php.conf;
   limit_req zone=antiddos burst=12 nodelay;
}
location ~ ^/files/(attach|config|cache/store)/.+\.php$ {
   return 403;
}
location ~ ^/files/(env|member_extra_info/(new_message_flags|point))/ {
   return 403;
}
location ~ ^/(\.(git|ht|jshint)|codeception\.|composer\.|Gruntfile\.js|package\.json|CONTRIBUTING|COPYRIGHT|LICENSE|README) {
   return 403;
}

# fix incorrect relative URLs (for legacy support)
location ~ ^/(.+)/(addons|common|files|layouts|m\.layouts|modules|widgets|widgetstyles)/(.+) {
   try_files $uri $uri/ /$2/$3;
}

# fix incorrect minified URLs (for legacy support)
location ~ ^/(.+)\.min\.(css|js)$ {
   try_files $uri $uri/ /$1.$2;
}

# rss, blogAPI
rewrite ^/(rss|atom)$ /index.php?module=rss&act=$1 last;
rewrite ^/([a-zA-Z0-9_]+)/(rss|atom|api)$ /index.php?mid=$1&act=$2 last;
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(rss|atom|api)$ /index.php?vid=$1&mid=$2&act=$3 last;

# trackback
rewrite ^/([0-9]+)/(.+)/trackback$ /index.php?document_srl=$1&key=$2&act=trackback last;
rewrite ^/([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ /index.php?vid=$1&document_srl=$2&key=$3&act=trackback last;

# administrator page
rewrite ^/admin/?$ /index.php?module=admin last;

# document category
rewrite ^/([a-zA-Z0-9_]+)/category/([0-9]+)$ /index.php?mid=$1&category=$2 last;

# document permanent link
rewrite ^/([0-9]+)$ /index.php?document_srl=$1 last;

# mid link
rewrite ^/([a-zA-Z0-9_]+)/?$ /index.php?mid=$1 last;

# mid + document link
rewrite ^/([a-zA-Z0-9_]+)/([0-9]+)$ /index.php?mid=$1&document_srl=$2 last;

# vid + mid link
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ /index.php?vid=$1&mid=$2 last;

# vid + mid + document link
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)$ /index.php?vid=$1&mid=$2&document_srl=$3 last;

# mid + entry title
rewrite ^/([a-zA-Z0-9_]+)/entry/(.+)$ /index.php?mid=$1&entry=$2 last;

# vid + mid + entry title
rewrite ^/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/entry/(.+)$ /index.php?vid=$1&mid=$2&entry=$3 last;
코멘트 0
접기/펴기 | 댓글 새로고침
 
 
Total 683 articles in 2 / 57 pages
번호 제목 제목 조회 수 날짜날짜
671 [GitHub] 이미 push된 file .gitignore 적용하기 74 2022/01/01
670 [GitHub] git의 .gitignore 사용방법 파일 111 2021/12/29
669 [jQuery] 텍스트 추출해서 링크 변환하기 130 2021/12/25
668 HTML/CSS 스크롤바 숨기기 없애기 (스크롤 동작) 328 2021/09/01
667 xampp mysql 명령어 터미널에서 실행하는 방법 파일 540 2021/02/05
666 [GitHub] 비밀글 간단한 깃 사용법 13 2021/02/01
665 리눅스 cp 명령어 사용법 정리 (파일, 디렉토리 복사, 백업) 파일 814 2020/12/12
664 [리눅스서버] 리눅스 폴더별압축 디렉토리별 압축 1058 2020/12/12
663 [리눅스서버] 수천 개의 파일이 포함 된 큰 디렉토리를 효율적으로 삭제 64 2020/12/07
662 [윈도우] 윈도우 이 항목을 찾을 수 없습니다 삭제 방법 68 2020/11/29
661 [리눅스서버] 리눅스 디렉토리별 용량 체크하는 방법 114 2020/11/26
660 비밀글 무료환율 api 0 2020/08/18

해시태그 디렉터리