How To Remove index.php From Permalink In WordPress

After a successful migration of your WordPress site to another server, the first thing you would like to do is enter Permalinks settings and remove index.php from permalink in WordPress. Having index.php in permalink often can lead to 404 missing page error and it disrupts User-Friendly URLs. 

Since you probably imported the database, there’s a good chance that you are going to see ‘index.php’ already create itself into your URL structure. If you want to remove index.php from the permalink you can check the below methods.

Why to Remove index.php From Permalink?

Remove index.php From URL WordPress

Here, we are going to show you two different methods. First, try method one, most of the time this method solves the problem. If it doesn’t work try method two. Let’s see.

The most common reason for index.php appearing is improper permalink structure. Therefore first check if the structure is set properly. 

To check it, navigate to Settings -> Permalinks

Now check if the permalink structure is set to ‘Post name’. If not then change it to post name and check if the index.php is removed. If not, then you have to try the second method. 

Method 2: Adding code to .htaccess file to remove index.php

If method one doesn’t work this surely will. Everything is described step by step, make sure you don’t miss anything.

Step 1: Make Sure ‘mod_rewrite’ is enabled on your server

At first, you log in to your hosting site and make sure your ‘mod_rewrite’ is enabled. If this module is active on your server, you will be able to create an info file and check for yourself. 

In cPanel, Mod_Rewrite is compiled with Apache by default. E.g.

 root@server [~]# httpd -l|grep rewrite
  mod_rewrite.c

If you want to check whether mod_rewrite is enabled on the server, open your website root directory. Now create a PHP file named mod_rewrite.php

Add the following code to this file.

<?php echo "Mod_rewrite is activated!"; ?>

Afterward, create a .htaccess file and rename the original .htaccess file to .htaccess_1 if you have it.

Now add the following code to the .htaccess file.

RewriteEngine On
RewriteRule ^.*$ mod_rewrite.php

Enter your website. If you see a message such as ‘Mod_rewrite is activated’, then it is enabled on your server. If you find anything else such as “mod_rewrite is disabled’, make sure to delete the .htaccess file that you created earlier and rename the original file to ‘.htaccess’.

Step 2: Set the Permalink Structure

Now navigate to Dashboard -> Settings -> Permalinks, then choose the ‘Custom Structure’ option and enter /%postname%. Then click on save changes. 

Step 3: Edit .htaccess file

Now open ‘File Manager’ from your hosting site and open the .htaccess file that is located at the root of your website folder(I am using cPanel). 

Now copy the following code and paste it on 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 will be enough to remove index.php from the permalink in the WordPress site. 

Additional Known Issues That Might Occur

Sometimes steps described above won’t give you any results. On some servers with high security, it may appear that ‘the mod_security is blocking your settings’ thus the index.php remains on your URL structure.

To solve this try adding the below piece of code in your .htaccess file. 

<IfModule mod_security.c>
SecFilterEngine Off
</IfModule>

Last Words

One more thing, check for a config file for Apache which may also override your .htaccess directives. Look for Ubuntu default /etc/apache2/apache2.conf file and change the entry for / and /var/www from AllowOverride None to AllowOverride All. Afterward, restart the apache server and hopefully, it will solve this issue as well. 

You may also want to know How to edit and change post/page URL in WordPress. It’s a post that describes the ways to change or edit post/page URL easily.

Let me know after removing index.php from your permalink. If you face any other issues ask me I will be happy to help and don’t forget to share this post. 

Was this helpful?

Thanks for your feedback!

6 responses to “How To Remove index.php From Permalink In WordPress”

  1. Haniya mubeen Avatar
    Haniya mubeen

    Method 1 worked for me, Thank you so much!

    1. Uzzal Raz Bongshi Avatar
      Uzzal Raz Bongshi

      Welcome

  2. Emmanuel Avatar
    Emmanuel

    Thank you so much, it worked perfectly without stress, all i did was the step 2 and the index.php was gone

    1. Uzzal Raz Bongshi Avatar
      Uzzal Raz Bongshi

      welcome

  3. bharti Avatar
    bharti

    hi
    still i am not able to remove index.php from url. Please help me

    1. Istiak Rayhan Avatar
      Istiak Rayhan

      Please contact with your web hosting provider. They will help you out.

Leave a Reply to Emmanuel Cancel reply

Your email address will not be published. Required fields are marked *

Introducing New Table Block Plugin - Tableberg

X
Need help?