1 message in ru.sysoev.nginxWordpress/rewrite
FromSent OnAttachments
dynaMar 23, 2007 9:08 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Wordpress/rewriteActions...
From:dyna (sbob@public.gmane.org)
Date:Mar 23, 2007 9:08:38 am
List:ru.sysoev.nginx

I've been trying to setup clean URLs on a Wordpress 2.1.2 install. I've read over this thread ( http://thread.gmane.org/gmane.comp.web.nginx.english/637 ) and essentially that is what I have with the exception that I do not run a WordPress MU install.

The redirects for posts appear to work, however if I for example go to /wp-admin/ I will be redirected to index.php with a 404 error, the stylesheet and images do not load.

The install can be found at http://208.85.75.72 if you want to see the results
live.

The domain is still not forwarded until I get a few more things taken care of so I am using the IP for access for now.

I've attached the nginx.conf file below any input would be fantastic. Thanks.

---- nginx.conf ----

server { #domain.com listen 80; server_name domain.com 208.75.85.72 www.domain.com *.domain.com; access_log logs/domain.access.log main;

location / { # default handler index index.html index.htm index.php; root /var/www/domains/domain.com; }

# static handler location ~* ^.+\.(jpg|jpeg|gif|png|css|txt|mp3|zip|tpl)$ { root /var/www/domains/domain.com; access_log off; expires 30d; }

# wordpress rewrites rewrite ^.*/files/(.*) /wp-content/blogs.php?file=$1; if (!-e $request_filename) { rewrite ^.+?(/wp-.*) $1 last; rewrite ^.+?(/.*\.php)$ $1 last; rewrite ^ /index.php last; } # fastcgi passoff location ~ .*\.php$ { include /etc/nginx/fcgi.conf; fastcgi_pass 127.0.0.1:####; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/domains/rednine.org$fastcgi_script_name; }

} #domain.com-close