Support » Fixing WordPress » Pages URL problem: "Not Found The requested URL […] was not found "

  • Dear all,

    I have read the previous posts on this issue but were not helpful, so maybe this thread can be useful for me and others.

    Posts work fine with the following structure /%year%/%monthnum%/%day%/%postname%/

    On the other hand pages show me the following error:

    “Not Found The requested URL mydomain.com/page was not found on this server. Apache/2.2.22 (Ubuntu) Server at mydomain.com Port 80

    I read it might be a bug with Apache.

    I use webmin to manage the virtual server (VPN).

    My .access file is:

    ###################################################
    # For rewrite rules needed for making WordPress URL friendly
    # See Options -> Permalinks for details and please use the defaults,
    # especially in mind when hosting several blogs on one machine!
    
    ##
    ## Configuration for a single blog hosted on / (root of the website)
    ##
    #<IfModule mod_rewrite.c>
    #RewriteEngine On
    #RewriteBase /
    #RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
    #RewriteRule . /index.php [L]
    #</IfModule>
    
    ##
    ## Configuration for a multi-site wordpress installation using subdomains
    ##
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    ########
    php_value upload_max_filesize 50M
    php_value post_max_size 50M
    php_value max_execution_time 500
    php_value max_input_time 500
    #########
    
    ###################################################

    Any light on this will be much appreciated. Thanks!

  • The topic ‘Pages URL problem: "Not Found The requested URL […] was not found "’ is closed to new replies.