WP .htaccess question

Out of context: Reply #5

  • Started
  • Last post
  • 7 Responses
  • Xopher0

    All my htacess files just have this for permalinks:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    Make sure your permissions on this file are set to 644, also apply these permissions to wp-admin/index.php. Everything else should be 755.

View thread