• Hello. I installed wordpress inside a folder in my hosting. The URL was https://fundacionshakespeare.es/nuevaweb. Permalinks (and everything) worked perfectly. When I felt it was ready to migrate, I changed the URLs at the wp panel, I moved wordpress to the root of the server and the permalinks werent working. I tried everything I could find to solve it, but with no luck. My .htaccess is like this right now:

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    I thought maybe only the pages that were already created were the ones leading to a 404 error page, but even if I create new ones they dont work as soon as I enable the permalinks. Any ideas? Thanks.

  • The topic ‘Permalinks broken after migration inside same domain’ is closed to new replies.