Wordpress : URL error 404 but the page exists

admin

Administrator
Staff member
I moved my wordpress (3.0) blog to my dedicaced server.

Just one thing is broken :

if i set the url in worpress to be

Code:
http://wwww.example.com/page?id=3

<strong>The page is correctly shown</strong>

If i set the URL to be :

Code:
http://wwww.example.com/about/
http://www.example.com/services/

<strong>it ends up with a 404 not found page !!</strong>

Here's my virtual host if it helps :

Code:
&lt;VirtualHost *:80&gt;
   ServerAdmin webmaster@localhost
   ServerName www.example.fr

    DocumentRoot /var/www/example
    &lt;Directory /var/www/example&gt;
            Options -Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    &lt;/Directory&gt;


    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access-example.log combined
    ErrorLog /var/log/apache2/error-example.log
    ServerSignature Off
&lt;/VirtualHost&gt;

Thanks you