How to remove index.php from WordPress site URL?

wordpress1

Solution 1 :

Step 1 : Go to your WP-ADMIN–>Settings–>Permalink

wordpress2

Step 2 : Chose URL structure and click and save button ,then issue will resolve.

wordpress1

Solution 2 : If still you are facing same issue we need to do below changes in  .htaccess file.

Add below content in .htaccess file

 #
BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress 

All the Best

About Manohar

I, Manohar am the founder and chief editor of ClarifyAll.com. I am working in an IT professional.

View all posts by Manohar →

Leave a Reply