How remove index.php from URL with .htaccess
0 19170
To remove or hide index.php from the URL link, you have to put the following code in your .htaccess file.
After putting this code in your .htaccess file it will simply hide the index.php from the Website's URL.
RewriteEngine On RewriteBase / # Removes index.php RewriteCond %{THE_REQUEST} ^.*/index.php RewriteRule ^(.*)index.php$ http://example.com/$1 [R=301,L] RewriteRule ^(.*)index$ http://.example.com/$1 [R=301,L]
If you think I have missed out on anything in this blog and if this blog helped you, so please comments and I will surely update that with this list.
Do share this blog with your social accounts, so that your friends can also reach to this list
.htaccess topics:
- How can I redirect URLs with .htaccess
- deny direct access to the folder in website with .htaccess
- How remove .php extension with .htaccess
Share:
Comments
Waiting for your comments