Hi, can anyone help me to get Joomla SEF running using nginx (latest stable)? Tried to follow this one:
http://wiki.nginx.org/NginxJoomla
but every page besides / end up in a 404-error. Same for those other x solutions that flew around via Google (mostly chinese).
[code]
location / {
error_page 404 = @joomla;
}
location @joomla {
rewrite ^(.*)$ /index.php?q=$1 last;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
[/code]