Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've installed nginx, FastCGI and PHP on my server. WordPress 3.0 installed after a bit of a monster battle, but it's installed and working well.

However, when I change the permalink settings to anything other than default, I get 404 errors on every post, article and page.

I understand that this is something to do with nginx not supporting .htaccess and WordPress getting confused with where to go when a page is requsted.

I've tried a few rewrites in the nginx conf files and even the nginx compatibility plugin; neither have worked. With one rewrite I managed to stop the 404 errors, but instead of WordPress finding the post I was after I merely got my PHP confirmation page. Bah.

Forums are littered with people with similar issues. Does anyone have a solution?

share|improve this question
possible duplicate of Wordpress 3.0 conversion of .htaccess to nginx rewrite rules – Jeff Jul 15 '10 at 12:49
Everything linked via that post does not work. – Taffy Lewis Jul 15 '10 at 13:10

4 Answers

On your location / block,

add this and remove any non-specific rewrite rules:

try_files $uri $uri/ /index.php;
share|improve this answer
This worked without problems, and it's the recommended solution according to the nginx official wiki. – PaBLoX Mar 26 '12 at 2:16

After much pain:

# if filename doesn't exist, take the request and pass to wordpress as a paramater
         if (!-e $request_filename) {
                rewrite ^/wordpress/(.+)$ /wordpress/index.php?q=$1 last;
         }

If the requested file does not exist, pass it to index.php. It's a bit slow and I think I might try and not use a query, but it does work... :)

share|improve this answer
Glad to hear you made a breakthrough! Sorry @Taffy, I've no experience with nginx, but I'll always do my best to help ;) – TheDeadMedic Jul 15 '10 at 18:33
@Taffy, This solved my problem as well, thank you very much – huntar Aug 9 '11 at 13:18

Have you tried the nginx Compatibility plugin?

Plus ElasticDog seems to provide a fairly concise article on getting WP working with nginx - which includes getting pretty permalinks to work.

Here's another article that seems to deal specifically with nginx rewrite rules for WordPress.

share|improve this answer
1  
Yes, tired the plugin - doesn't work. I also have followed ElasticDog's tutorial, I'm using much of his config now. I've also followed wiki.dreamhost.com/Nginx and understand most of it (I think!) but again, same problem. Whenever I change the permalinks to anything other than default and try to access a post, article or page I get the "No input file specified." error. I assume that WordPress (and the rewrites) are failing to tell WordPress what to do, but I'm getting nowhere... :( – Taffy Lewis Jul 15 '10 at 14:37
The plugin does work, it's just that there's another thing you need to do: piran.com.au/2011/10/nginx-and-wordpress-permalinks – Rich Jun 14 '12 at 2:07

This was how I solved my permalinks in my wordpress blogs in dreamhost.

Inside the folder /home/ftpusername/nginx/example.com/ (if you don't have it, create it)
created the file nginx.conf with the following content

location / {
    index index.php index.html index.htm;
    try_files $uri $uri/ /index.php?$args;
}

restarted the nginx
/etc/init.d/nginx reload

Some notes:
ftpusername and example.com MUST be changed according to your system.

That was it!
Good luck for u all.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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