nginx rewrite 의사 정적 설정 파라미터 와 사용 예
* 대소 문자 구분 을 위 한 일치
* ~ * 대소 문자 구분 없 이 일치
* !~와!대소 문자 구분 이 일치 하지 않 고 대소 문자 구분 이 일치 하지 않 습 니 다.
파일 및 디 렉 터 리 일치, 그 중:
* - f 와! -f 파일 존재 여 부 를 판단 하 는 데 사용
* - d 와! -디 렉 터 리 존재 여 부 를 판단 하 는 데 사용
* - e 와! -e. 파일 이나 디 렉 터 리 가 존재 하 는 지 판단 하 는 데 사용 합 니 다.
* - x 와! -x. 파일 이 실 행 될 수 있 는 지 여 부 를 판단 하 는 데 사용 합 니 다.
flag 태그:
* last 는 아파 치 의 [L] 태그 에 해당 하 며, rewrite 완료
* break 매 칭 종료, 다음 규칙 과 일치 하지 않 음
* redirect 302 임시 주소 바 꾸 기 를 되 돌려 주면 이동 한 주소 가 표 시 됩 니 다.
* permanent 301 을 되 돌려 주 고 주소 표시 줄 을 영구적 으로 바 꾸 면 점프 후의 주소 가 표 시 됩 니 다.
일부 사용 가능 한 전역 변 수 는 조건 으로 판단 할 수 있 습 니 다 (보완 대기)
$args
$content_length
$content_type
$document_root
$document_uri
$host
$http_user_agent
$http_cookie
$limit_rate
$request_body_file
$request_method
$remote_addr
$remote_port
$remote_user
$request_filename
$request_uri
$query_string
$scheme
$server_protocol
$server_addr
$server_name
$server_port
$uri
QeePHP 를 결합 한 예
if (!-d $request_filename) {
rewrite ^/([a-z-A-Z]+)/([a-z-A-Z]+)/?(.*)$ /index.php?namespace=user&controller=$1&action=$2&$3 last;
rewrite ^/([a-z-A-Z]+)/?$ /index.php?namespace=user&controller=$1 last;
break;
다 중 디 렉 터 리 를 매개 변수 로 변환
abc.domian.com/sort/2 => abc.domian.com/index.php?act=sort&name=abc&id=2
if ($host ~* (.*)\.domain\.com) {
set $sub_name $1;
rewrite ^/sort\/(\d+)\/?$ /index.php?act=sort&cid=$sub_name&id=$1 last;
}
디 렉 터 리 교환
/123456/xxxx -> /xxxx?id=123456
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;
예 를 들 어 다음 설정 nginx 는 사용자 가 ie 를 사용 할 때 / nginx - ie 디 렉 터 리 로 재 설정 합 니 다.
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /nginx-ie/$1 break;
}
디 렉 터 리 자동 추가 "/"
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}
htaccess 금지
location ~/\.ht {
deny all;
}
여러 디 렉 터 리 금지
location ~ ^/(cron|templates)/ {
deny all;
break;
}
/ data 로 시작 하 는 파일 금지
/ data / 다음 다단 계 디 렉 터 리 에서. log. txt 등의 요청 을 금지 할 수 있 습 니 다.
location ~ ^/data {
deny all;
}
단일 디 렉 터 리 금지
요청 할 수 있 는. log. txt 를 금지 할 수 없습니다.
location /searchword/cron/ {
deny all;
}
단일 파일 금지
location ~ /data/sql/data.sql {
deny all;
}
favicon. ico 와 robots. txt 에 만 료 시간 설정 하기;
여 기 는 favicon. ico 는 99 일 이 며, robots. txt 는 7 일 이 며 404 오류 로 그 를 기록 하지 않 습 니 다.
location ~(favicon.ico) {
log_not_found off;
expires 99d;
break;
}
location ~(robots.txt) {
log_not_found off;
expires 7d;
break;
}
어떤 파일 의 만 료 시간 설정 하기;여 기 는 600 초 입 니 다. 방문 로 그 를 기록 하지 않 습 니 다.
location ^~ /html/scripts/loadhead_1.js {
access_log off;
root /opt/lampp/htdocs/web;
expires 600;
break;
}
파일 도 난 방지 및 만 료 시간 설정
여기 return 412 는 사용자 정의 http 상태 코드 입 니 다. 기본 값 은 403 입 니 다. 정확 한 도 난 요청 을 쉽게 찾 을 수 있 습 니 다.
“rewrite ^/ http://leech.c1gstudio.com/leech.gif"도 난 방지 체인 그림 표시
"access log off;" 접근 로 그 를 기록 하지 않 고 스트레스 를 줄 입 니 다.
"expires 3d" 모든 파일 3 일 브 라 우 저 캐 시
location ~* ^.+\.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ {
valid_referers none blocked *.c1gstudio.com *.c1gstudio.net localhost 208.97.167.194;
if ($invalid_referer) {
rewrite ^/ http://leech.c1gstudio.com/leech.gif;
return 412;
break;
}
access_log off;
root /opt/lampp/htdocs/web;
expires 3d;
break;
}
고정 ip 로 웹 사 이 트 를 방문 하고 비밀 번 호 를 추가 할 수 있 습 니 다.
root /opt/htdocs/www;
allow 208.97.167.194;
allow 222.33.1.2;
allow 231.152.49.4;
deny all;
auth_basic "C1G_ADMIN";
auth_basic_user_file htpasswd;
다단 계 디 렉 터 리 에 있 는 파일 을 파일 로 변환 하여 seo 효 과 를 강화 합 니 다.
/job-123-456-789.html /job/123/456/789.html
rewrite ^/job-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /job/$1/$2/jobshow_$3.html last;
루트 디 렉 터 리 아래 폴 더 를 2 단계 디 렉 터 리 로 가리 키 기
예 를 들 어 / hanghaijob / 지향 / area / hanghai /
last 를 permanent 로 바 꾸 면 브 라 우 저 주소 표시 줄 은 / location / hanghai / 입 니 다.
rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
위의 예 에서 문제 가 있 습 니 다. / hanghai 에 접근 할 때 일치 하지 않 습 니 다.
rewrite ^/([0-9a-z]+)job$ /area/$1/ last;
rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
이렇게 / shanghai 도 접근 할 수 있 지만 페이지 의 상대 링크 는 사용 할 수 없습니다.
예. / list1. html 실제 주 소 는 / area / shanghia / list1. html 는 / list1. html, 접근 할 수 없 을 때 까지 안내 합 니 다.
그러면 제 가 자동 점프 까지 하면 안 되 겠 네요.
(- d $request filename) 실제 디 렉 터 리 를 위 한 조건 이 있 습 니 다. 제 rewrite 는 그렇지 않 기 때문에 효과 가 없습니다.
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}
이 유 를 알 고 나 면 잘 될 거 야, 내 가 수 동 으로 뛰 게 해 줘.
rewrite ^/([0-9a-z]+)job$ /$1job/ permanent;
rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
파일 과 디 렉 터 리 가 존재 하지 않 을 때 방향 을 바 꿉 니 다:
if (!-e $request_filename) {
proxy_pass http://127.0.0.1;
}
도 메 인 이름 이동
server
{
listen 80;
server_name jump.c1gstudio.com;
index index.html index.htm index.php;
root /opt/lampp/htdocs/www;
rewrite ^/ http://www.c1gstudio.com/;
access_log off;
}
다 중 도 메 인 이름 전환
server_name www.c1gstudio.com www.c1gstudio.net;
index index.html index.htm index.php;
root /opt/lampp/htdocs;
if ($host ~ "c1gstudio\.net") {
rewrite ^(.*) http://www.c1gstudio.com$1 permanent;
}
3 레벨 도 메 인 이름 이동
if ($http_host ~* "^(.*)\.i\.c1gstudio\.com$") {
rewrite ^(.*) http://top.yingjiesheng.com$1;
break;
}
도 메 인 이름
server
{
listen 80;
server_name mirror.c1gstudio.com;
index index.html index.htm index.php;
root /opt/lampp/htdocs/www;
rewrite ^/(.*) http://www.c1gstudio.com/$1 last;
access_log off;
}
어떤 하위 디 렉 터 리 가 거울 방향 으로 되 어 있다.
location ^~ /zhaopinhui {
rewrite ^.+ http://zph.c1gstudio.com/ last;
break;
}
discuz ucenter home (uchome) rewrite
rewrite ^/(space|network)-(.+)\.html$ /$1.php?rewrite=$2 last;
rewrite ^/(space|network)\.html$ /$1.php last;
rewrite ^/([0-9]+)$ /space.php?uid=$1 last;
discuz 7 rewrite
rewrite ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 last;
rewrite ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3 last;
rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page\%3D$4&page=$3 last;
rewrite ^(.*)/profile-(username|uid)-(.+)\.html$ $1/viewpro.php?$2=$3 last;
rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 last;
rewrite ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 last;
디스크 블록 에 도 메 인 이름 을 따로 설정 합 니 다.
server_name bbs.c1gstudio.com news.c1gstudio.com;
location = / {
if ($http_host ~ news\.c1gstudio.com$) {
rewrite ^.+ http://news.c1gstudio.com/forum-831-1.html last;
break;
}
}
discuz ucenter 프로필 사진 rewrite 최적화
location ^~ /ucenter {
location ~ .*\.php?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location /ucenter/data/avatar {
log_not_found off;
access_log off;
location ~ /(.*)_big\.jpg$ {
error_page 404 /ucenter/images/noavatar_big.gif;
}
location ~ /(.*)_middle\.jpg$ {
error_page 404 /ucenter/images/noavatar_middle.gif;
}
location ~ /(.*)_small\.jpg$ {
error_page 404 /ucenter/images/noavatar_small.gif;
}
expires 300;
break;
}
}
jspace rewrite
location ~ .*\.php?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
location ~* ^/index.php/
{
rewrite ^/index.php/(.*) /index.php?$1 break;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.