Viewing 9 replies - 1 through 9 (of 9 total)
  • It works fine for me. What are your Permalinks set to? I’m using %postname%. Perhaps it’s a Plugin conflict or Theme issue.

    https://gtmanagement.com/1-test

    Thread Starter realmattbender

    (@realmattbender)

    its working fine for me on my other installs as well permalink structure is set to %postname% It is not a theme or plugin issue, have tried deactivating all and switching to 2014 with no luck

    Maybe change the Permalink settings to rewrite the .htaccess file. If you have direct file access maybe try the .htaccess file from the other working install. What do you get a 404?

    Thread Starter realmattbender

    (@realmattbender)

    yup 404 already tried copying another working installs .htaccess with no luck either

    Thread Starter realmattbender

    (@realmattbender)

    Also, the same is true for pages, not only posts

    Can you post the .htaccess code?

    Thread Starter realmattbender

    (@realmattbender)

    # BEGIN WordPress
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteRule ^(.+)\.(html|php)$ $1/ [R=301,L]
    # END WordPress
    # 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

    I’d try taking out the first block. My install uses simply this.

    # 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

    Yup that first block breaks my 1-test page.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Permalink not working with first character as a number’ is closed to new replies.