Menu
Tag

url

Create URL Shortner using PHP | Google URL Shortner API

PHP By Feb 22, 2018 No Comments

Sharing a short URL instead of long Url is amazing. First of all they dont have to write to much to acess your url and no one knows what it is all about until they will not open it. In this tutorial i will show you how you can create  short url using Google URL Shortner API in PHP. We…

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…