• I’ve been over the .htaccess file a hundred times, it’s correct. But every time I change from default permalinks in the WordPress menu, any page except the home page gives Internal Server Error, 500. The logs have an error message that says too many recursion attempts, max of 10.

    I think this is a permissions issue, but I’m really not sure where it would be. I’ve changed the whole directory to root with recursion, and it still happens.

    Any advice would be great! Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Are you on apache?

    if your .htaccess is correct , other place is look is in apache and check if mod_rewrite is enabled?

    Thread Starter wyx

    (@wyx)

    Yes, I’ve checked that. There aren’t any issues that I can see. mod_rewrite is uncommented. And yes, I’m using apache.

    .htaccess looks like this, which is just the default .htaccess file.

    # 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>
    # END WordPress

    httpd.conf looks like this:

    LoadModule rewrite_module modules/mod_rewrite.so

    But wait. If the module being loaded is .so, should the .htaccess also be mod_rewrite.so instead of mod_rewrite.c?

    Edit: Nope. Just got rewritten back to mod_rewrite.c

    Thread Starter wyx

    (@wyx)

    The error that I get is this:

    [Thu Apr 09 09:04:13.710255 2015] [core:error] [pid 7764] [client 192.168.1.1:53673] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Permalinks not working, possible permission error.’ is closed to new replies.