Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

apache - Convert htaccess to nginx rewrite

.htaccess to nginx rewrite convertion help

RewriteEngine On
RewriteBase /

RewriteRule ^c-(.*)$ catpost.php?id=$1 [L]
RewriteRule ^a-(.*)-(.*)$ archives.php?month=$1&year=$2 [L]

RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteRule ^(.*)$ viewpost.php?id=$1 [QSA,L]
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Assuming you have a working PHP implementation, try:

location / {
    rewrite ^/c-(.*)$ /catpost.php?id=$1 last;
    rewrite ^/a-(.*)-(.*)$ /archives.php?month=$1&year=$2 last;

    try_files $uri $uri/ @rewrite;
}
location @rewrite {
    rewrite ^/(.*)$ /viewpost.php?id=$1 last;
}

The main thing to remember is that nginx URIs begin with a leading /.

The first two rewrites may be inside the location block or not - depending on what other location blocks you have. See this document for details.

The conditional rewrite is basically what try_files is designed to do. We use a named location to lose the leading /. See this document for details.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...