Viewing 2 replies - 1 through 2 (of 2 total)
  • paulwv

    (@paulwv)

    First of all, make sure that mod_rewrite is enabled on your server.

    #2 Go to settings> Permalink and make sure that “index.php” is not written in your custom structure.

    #3 make sure this line of code is in your .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
    • This reply was modified 6 years ago by paulwv.
    Thread Starter skydestrier

    (@skydestrier)

    Aah! It was #2. Fixed, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I remove /index.php/ from the middle of my address?’ is closed to new replies.