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 the permalink often can lead to a 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. 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.
Supercharge Your WordPress Block Editor!
Why to Remove index.php From Permalink?
Index.php is not considered a user-friendly URL and it may lead you to a 404 error. Besides, there is no benefit to keeping index.php in the URL, except trouble. If you are a blogger and write articles, then you might target long-tail keywords. Keeping index.php in the URL makes it too long.
Therefore it is wise to remove index.php from the permalink.
Method 1: Setting Permalink Structure to Remove index.php
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 The .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 the .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 into 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, the 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.
Changelog
- Updated on 2024-10-10 (Uzzal Raz Bongshi)
- Updated images.
- Updated the post structure.
Leave a Reply