• Hi
    I changed the permalink default configuration
    After that, the htacces file was corrupted and the site not available.
    I restored the initial htaccess file.
    The home page now is available, but the internal pages no.
    When I try to enter the permalink configuration page (https://seo.4tmarketing.com/wp-admin/options-permalink.php) I get a strange not existing page (the wordpress admin page in a character only interface) , and the htacces file is corrupted again.
    How to recover from sucha a situation?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Stef

    (@serafinnyc)

    Changing your permalinks manually doesn’t change your htaccess unless you’re using some sort of security or 301 redirect plugin that somehow writes to that. Which I haven’t seen. And after looking at your site I don’t really see any plugins that would affect this.

    Not seeing your htaccess you’ll want to have a look at it and probably start from scratch.

    This is what it looks like before being written to by anything else. If it appears way different, just add this, save and then refresh. However, your site is a one page scroll site, so I’m not seeing where links are being used to go to other pages.

    
    # 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 read this article when changing permalinks in the future.

    • This reply was modified 5 years, 6 months ago by Stef.
Viewing 1 replies (of 1 total)
  • The topic ‘Permalink page inaccessibility after permalink change’ is closed to new replies.