• Hello
    I’m trying to use permalink on my company’s intranet site but does not work.

    mod_rewrite is enabled and it actually updates my .htaccess file.
    AllowOverride was None before, so I changed it to All and rebooted apache.
    But if I set the permalink to something other than the default, it shows 404 Not Found error.

    This is my .htaccess file.
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>
    #END WordPress

    I’ve read through http://codex.wordpress.org/Using_Permalinks so many times and still can’t figure out how to fix this problem.

    Can anyone help with this?

Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Permalinks do not work’ is closed to new replies.