We do support Round the Clock 24 x 7 x 365 (+91) 883 012 3924
 

Category: Plesk

Remove .php extension with the help of .htaccess file

If you want user-friendly URLs on your site and hide .php extension then this post is useful for you. Please follow below steps to hide .php file extensions : # Open .htaccess file and add below rewrite rules RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php [NC,L] Now…

Remove .html extension with the help of .htaccess file

If you want user-friendly URLs on your site and hide .html extension then this post is useful for you. Please follow below steps to hide .html file extensions : # Open .htaccess file and add below rewrite rules RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.html [NC,L] Now…