Remove index.php from my URL
-
Hello,
I have WordPress 5.4.1 installed on my server.
The URL of the page is https://192.168.61.7/wordpress/index.php/page-name
I changed the permalink structure to https://192.168.61.7/wordpress/page-name and updated the .htaccess folder with the following code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
and im still not able to get rid of the index.php in the URL
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Remove index.php from my URL’ is closed to new replies.