Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I did a search, and I found a few issues that could cause this problem.</p> <p>A <code>403</code> message means it's a permission error. The error can be caused because of something missing in the .htaccess file like <code>Options +SymLinksIfOwnerMatch</code> at the top of the .htaccess file, or the permalink format string from<code>/%year%/%monthnum%/%day%/%postname%/</code> to <code>/archives/%year%/%monthnum%/%day%/%postname%/</code>.</p> <p>I found a bunch of people with this issue doing a search on Google for 'permalink 403 error'. <a href="http://wordpress.org/support/topic/permalink-403-error" rel="nofollow">http://wordpress.org/support/topic/permalink-403-error</a></p> <p><a href="http://wordpress.org/support/topic/configure-permalinks-directly-in-apache-httpdconf#post-1546181" rel="nofollow">Try changing the httpd.conf file as such:</a> In your httpd.conf (or one of the included .conf files) is a reference to your website directory. It will look something like this:</p> <pre><code>&lt;Directory "/var/www/path/to/your/web/dir"&gt; Options ... ... etc. &lt;/Directory&gt; </code></pre> <p>Add the mod_rewrite directive in between the tags to enable the permalink feature in your site:</p> <pre><code>&lt;Directory "/var/www/path/to/your/web/dir"&gt; ... &lt;IfModule mod_rewrite.c&gt; RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] &lt;/IfModule&gt; &lt;/Directory&gt; </code></pre> <p>For more permalink control without .htaccess support, install the redirection plugin. Without a valid .htaccess file, the options will trigger an error that I'm sure you can safely ignore. At least it worked on my test server.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload