Hello friends, today I will tell you through this post how you to Redirect Domain from HTTPS to HTTP Using .htaccess. So let’s go. Add the code below to your website .htaccess file and then save it. RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
See MoreCategory: HTML
Experts PHP web programming blog focuses on all web development tutorial PHP & MySQL,LARAVEL,XML,WORDPRESS, HTML, CSS, AJAX, jQuery, Web Demos…
How to Remove all Question Mark From String Using JavaScript?
Hello friends, today I will tell you through this tutorial how you can easily remove all the question marks from your string content using javascript or jquery. This tutorial will try to understand you step to step. So let’s go. extract question mark from string by javascript with demo, remove question mark (?) from string […]
See MoreHow to Get HTML Source Code by URL Using PHP?
Hello friends, today I will tell you through this article how you can get the html source code of any website through php. So let’s go. Extract HTML Source Code of a url using php, How to fetch html source code of a any website from url using php?, fetch html source code by url […]
See MoreHow to Create Scientific Calculator Using HTML, JavaScript and CSS?
A calculator is an Electronic Hardware Device that is capable of doing very Mathmetical Calculations such as addition, multiplication, division and subtraction. But we are going to talk about How we Create a Scientific Calculator through Javascript. Let’s try to know step to step. Keywords :- Scientific Calculator, Simple Scientific Calculator Create using HTML, JavaScript […]
See More