• Hi All,

    When my default URL’s are activated everything works great however when Permalinks are activated everything but the categories tabs work. The categories just shows ‘404 object not found.’

    I am running XMAPP and have tried everything I can find to adjust the security and mod_rewrite settings.

    And I have noticed that the 404 URL looks like this:
    http://localhost/wordpresscategory/example/
    And when I adjust the / between the wordpress and category to:
    http://localhost/wordpress/category/example/
    (This is the correct URL)I get directed the the correct page.

    Any Ideas on how to add the / in the URL…. Or anything else???

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Reset your permalink from wordpress admin area and add this code in htaccess:

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Now, check with blog posts and pages.

    Thanks,

    Shane G.

    Thread Starter mrlaspina

    (@mrlaspina)

    Hey,

    Just tried the above and still not working……

    Same here, no permalink works on localhost but the default.

    I’m on W7, apache 2.2/php5, WP3. I’ve commented out the mod_rewrite line and set AllowOverride all in httpd.conf and restarted apache multiple times.. Yet if i set my permalinks to other than default, i’ll get a 404 for all the posts and pages.

    Pls help!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Permalink URL Broken’ is closed to new replies.