url rewriting - How do I rewrite mysite.com/page/ to mysite.com/page/index.html with NGINX? -
url rewriting - How do I rewrite mysite.com/page/ to mysite.com/page/index.html with NGINX? -
how can 301 rewrite mysite.com/page/ mysite.com/page/index.html using nginx?
in apache had:
rewriterule page/ http://mysite.com/page/index.html [r=301,l]
thanks help,
hydn
try settings:
location / { rewrite /page/ http://mysite.com/page/index.html permanent; ... }
url-rewriting nginx
Comments
Post a Comment