vote up 1 vote down star

I try to get an "/" to every urls end:

example.com/art

should

example.com/art/

I use nginx as webserver.

I need the rewrite rule for this..

For better understanding check this:

http://3much.schnickschnack.info/art/projekte

If u press on a small thumbnail under the big picture it reloads and shows this url:

http://3much.schnickschnack.info/art/projekte/#0

If i now have a slash on all urls (on the end) it would work without a reload of the site.

Right now i have this settings in nginx-http.conf:

server {
listen *:80;
 server_name 3much.schnickschnack.info;
access_log /data/plone/deamon/var/log/main-plone-access.log;
rewrite ^/(.*)$ /VirtualHostBase/http/3much.schnickschnack.info:80/2much/VirtualHostRoot/$1 last;
location / {
proxy_pass http://cache;
}
}

How do I configure nginx to add a slash? (I think i should a rewrite rule?)

flag
Um... why would you want a / at th eend of all your URLs? – cletus Mar 14 at 12:35
What's the question? – S.Lott Mar 14 at 12:37
I need it for a js gallery. If there is no "/" it reloads the site... – Gomez Mar 14 at 12:39
I need the rewrite rule for nginx.... – Gomez Mar 14 at 12:40
So the question is "How do I configure nginx to add a slash?" Or is it "How do I configure nginx to work without a slash?" – S.Lott Mar 14 at 17:15
show 1 more comment

1 Answer

vote up 1 vote down

Try this: ^(.*)$ http://domain.com/$1/ [L,R=301]

This redirects (Status code 301) everything ($1) without a "/" to "$1/"

link|flag
Its no status 301. – Gomez Mar 14 at 13:19
Gomez: You should absolutely 301 (redirect) the non-slashed URL to the slashed one, or search-engines and such will see example.com/blah and example.com/blah/ as two completely separate pages – dbr Mar 14 at 14:00
I just tested this. ^(.*)$ redirects everything regardless. I had to use ^(.*)[^/] instead, so it only redirects if there's no ending slash. – Chris Aug 12 at 19:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.