textpattern nginx 의 rewrite 규칙
2288 단어 Pattern
Clean URLs for Textpattern with Nginx
최근 에 또 소란 을 피 우기 시작 했다. ,제 웹 환경 은 nginx 기반 이기 때문에 인터넷 에서 검색 해 봤 습 니 다. textpattern 은 nginx 의 rewrite 규칙 에서 가장 완벽 한 것 을 찾 습 니 다.
textpattern
Reference Address:
textpattern
코드 는 다음 과 같다.
location /
{ root /var/www/where-document-root-is/; index index.html index.htm index.php;
if (!-e $request_filename) { rewrite ^(.*) /index.php; } }
if (-e $request_filename) { break; } rewrite ^/(.*)$ /index.php?=$1 last;
---------------
rewrite ^(.*)/category/(.*)/$ $1/index.php?c=$2 last;#
rewrite ^(.*)/category/(.*)$ $1/index.php?c=$2 last;
rewrite ^(.*)/rss/$ $1/index.php?rss=1 last;
rewrite ^(.*)/atom/$ $1/index.php?atom=1 last;
rewrite ^(.*)/tag/(.*)/$ $1/index.php?s=tag&t=$2 last;#
rewrite ^(.*)/tag/(.*)$ $1/index.php?s=tag&t=$2 last;
rewrite ^(.*)/(\d*)(/.*)$ $1/index.php?id=$2 last;
rewrite ^(.*)/(.*)/$ $1/index.php?s=$2 last;
rewrite ^(.*)/(.*)$ $1/index.php?s=$2 last;
-----------------
,
, , 。
__EOF__
Be Sociable, Share!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
문자열을 날짜 대상으로 변환하기 (각도를 바꾸어 코드를 쓰기)/** * 日期模式定义. */ var GlobalDatePattern = [ { pattern: "yyyy-MM-dd HH:mm:ss", fix: { year: 0, month: 1, day: 2, hour: 3, ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.