Carson
Carson

Reputation: 4651

Wordpress Bad Request Error

Hey guys, I've seen a few people bring it up but haven't found a solution yet.

Every link I click on from the home page goes to a blank page with the text, "Bad Request."

Nothing else. No errors, nothing. Even if I copy the permalink right from the Wordpress page area, it gives me the error. To see what I mean, try this - http://3mpromos.ca/carcrazy/your-projects/

The home page is http://3mpromos.ca/carcrazy/. The links on there should go to the 'Venues' page, but keep giving me an error. The only links that work are to the signup and login areas.

Any ideas?

Upvotes: 1

Views: 432

Answers (2)

JohnB
JohnB

Reputation: 18972

Search for "iis" here:

Upvotes: 1

Aston
Aston

Reputation: 3712

You are running the site on IIS, that causes the problem ... I mean I'm not an expert of IIS but from the HTTP headers I can see that for the next URL

http://3mpromos.ca/carcrazy/index.php

the headers are

Server  Microsoft-IIS/6.0
X-Powered-By    PHP/5.2.3, ASP.NET

And for this:

http://3mpromos.ca/carcrazy/index.php/omgloller

I get these headers

Server  Microsoft-IIS/6.0
X-Powered-By    ASP.NET

So I suppose for the second request IIS doesn't trigger the PHP module. So you might want to setup IIS to handle URL rewrites. I can't help more, Google is your friend or try to create a new question with IIS specific tags.

Upvotes: 0

Related Questions