Menu
Tag

htaccess

Remove PHP Extension from URL Using Htaccess URL Rewrite Rule

Home, PHP By Jun 11, 2016 No Comments

Hello friends many times we need to remove the extensions from our URL for better SEO. So in this tutorial we will tell you how you can Remove PHP Extension from URL using  .htaccess file. Use the below code in your .htaccess file only RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php [NC,L] In this above code…

How to Make Website Run Faster Using Gzip

PHP By Jun 10, 2014 2 Comments

Making website which run faster is everyone dreams and everyone want this to do. Earlier we have posted 2 articles regarding the GZIP Compress for PHP and CSS. You can check them here How to compress PHP using GZIP and How compress CSS using GZIP. Today we are putting using the HTACCESS for doing this and after using it your…