Viewing 1 replies (of 1 total)
  • Hello there! 

    Sorry for the delayed response. 

    I suggest checking your permalink structure under Settings > Permalinks and consider switching to either “Plain” or “Post Name” if you currently have a “Custom Structure” selected. Additionally, you may need to review your .htaccess file and potentially add a simple piece of code to remove “index.php” from your website URLs. Make sure to test if this change also removes the next slug that follows it. Here’s the code I found:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    Add it before the already existing WordPress rules in the file and let me know how it goes.

Viewing 1 replies (of 1 total)
  • The topic ‘change page link’ is closed to new replies.