帮助Apache .htaccess文件

时间:2010-11-29 23:20:09

标签: apache .htaccess configuration nginx

尝试将.htaccess文件转换为 NGINX 表示法。

我已阅读在线帮助指南,但仍在努力。

有人会介意帮忙。我的.htaccess是:

Options -Indexes
Options +FollowSymLinks  

# Enable ETag
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] 

###########################################################
# Error Handling
###########################################################

#ErrorDocument 400 /
#ErrorDocument 401 /
#ErrorDocument 403 /
#ErrorDocument 404 /
#ErrorDocument 500 /


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

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

更新

对于GZIP压缩,这似乎有效。但是我还没有想出如何使用我的HTTP重写规则。

 gzip             on;
  gzip_min_length  1000;
  gzip_proxied     expired no-cache no-store private auth;
  gzip_types       text/plain application/xml;
  gzip_disable     "MSIE [1-6]\.";

更新2

我尝试用以下NGINX规则替换我的htaccess重写规则,但这似乎不起作用。我有什么想法吗?

# Redirect /signup/planname or /signup/planname/ ->  /signup/index.php?account_type=planname
rewrite  ^signup/([A-Za-z]+)/?$ /signup/index.php?account_type=$1  last;

# Redirect /home/123 or /home/123/ ->  home.php?home_id=123
rewrite  ^home/([0-9]+)/?$ home.php?home_id=$1  last;

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

更新3

根据下面的评论,我现在有以下NGINX配置,但仍然有问题

# gzip
gzip             on;
gzip_min_length  1000;
gzip_proxied     expired no-cache no-store private auth;
gzip_types       text/plain application/xml;
gzip_disable     "MSIE [1-6]\.";


# Require SSL (HTTPS) on the signup page
# ====== THIS DOESN'T WORK AND BREAKS NGINX
# I obviously change "example.com" to be my actual domain
if (location /signup/) {
   rewrite ^ https://www.example.com$request_uri? permanent;
}


# Redirect /signup/planname or /signup/planname/ ->  /signup/index.php?account_type=planname
rewrite  ^signup/([A-Za-z] +)/?$ /signup/index.php?account_type=$1  last;

# Redirect /home/123 or /home/123/ ->  home.php?home_id=123
# Also, Redirect /homes/ in case someone made a typo when it should have been /home/
rewrite  ^/homes?/([0-9]+)/?$  /home.php?home_id=$1?  last;

1 个答案:

答案 0 :(得分:0)

正如我在documentation中看到的那样,你的规则(不是conds)应该像一样

A:

 RewriteCond %{SERVER_PORT} 80 
 RewriteCond %{REQUEST_URI} ^/signup/?
 RewriteRule ^(.*)$ https://www.example.com/$1

N(有关详细信息,请参阅here):

if (location /signup) {
   rewrite ^ https://pma.clinicacgm.0$request_uri? permanent;
}

A:

RewriteRule ^home/([0-9]+)/?$ home.php?home_id=$1
RewriteRule ^homes/([0-9]+)/?$ home.php?home_id=$1

N:

 rewrite  ^/homes?/([0-9]+)/?$  /home.php?home_id=$1?  last;