Hi,
I’m installing stikked (a pastebin web server) on my server. I’m having
trouble, I want to rewrite all url like this :
http://pastebin.okira.net/index.php/lists like that :
http://pastebin.okira.net/index.php?lists
There is a rewrite rule in the install howto but it didn’t work :
location / {
try_files $uri $uri/ @stikked;
}
location @stikked {
rewrite ^/(.*)$ /index.php?/$1 last;
}
Thanks for help, Regards.