【问题标题】:How would I convert my .htaccess file to NGINX?如何将我的 .htaccess 文件转换为 NGINX?
【发布时间】:2011-01-01 12:24:25
【问题描述】:

我将如何转换下面的 .htaccess (Apache) 文件以便 NGINX 可以使用它?

Options -Indexes
Options +FollowSymLinks

# Enable ETag
#FileETag MTime Size
FileETag none

# Set expiration header
ExpiresActive on
ExpiresDefault A2592000
Header append Cache-Control "public"

# Compress some text file types
AddOutputFilterByType DEFLATE text/html text/plain text/css text/xml application/x-javascript text/javascript application/javascript application/json

# Deactivate compression for buggy browsers
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

# Set header information for proxies
Header append Vary User-Agent

########################################################
# Rewrite Rules
########################################################

RewriteEngine on

# Require SSL (HTTPS) on the signup page
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} ^/signup/?
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

# Redirect /signup/plan or /signup/plan/ ->  /signup/index.php?account_type=plan
RewriteRule ^signup/([A-Za-z]+)/?$ /signup/index.php?account_type=$1 [NC,L]

# Redirect /home/123 or /home/123/ ->  home.php?home_id=123
RewriteRule ^home/([0-9]+)/?$ home.php?home_id=$1 [NC,L]

# Redirect /homes/ in case someone made a typo when it should have been /home/
RewriteRule ^homes/([0-9]+)/?$ home.php?home_id=$1 [NC,L]

#################################################
# Default Settings
#################################################

# hide apache server signaute on apache generated pages (e.g. 404)
ServerSignature Off

【问题讨论】:

    标签: apache .htaccess nginx


    【解决方案1】:
    【解决方案2】:
        if ($server_port ~ "80"){
     set $rule_0 1$rule_0;
    }
    if ($uri ~ "^/signup/?"){
     set $rule_0 2$rule_0;
    }
    if ($rule_0 = "21"){
     rewrite ^/(.*)$ https://www.example.com/$1 redirect;
     break;
    }
     rewrite ^/signup/([A-Za-z]+)/?$ /signup/index.php?account_type=$1 last;
     rewrite ^/home/([0-9]+)/?$ /home.php?home_id=$1 last;
     rewrite ^/homes/([0-9]+)/?$ /home.php?home_id=$1 last;
    

    Online converter

    【讨论】:

      猜你喜欢
      • 2021-02-07
      • 1970-01-01
      • 2021-06-30
      • 1970-01-01
      • 2020-09-22
      • 2018-07-10
      • 2017-08-02
      • 2011-05-07
      相关资源
      最近更新 更多