Posts

Showing posts from November, 2023

how to remove 000webhost powered by icon right bottom

 <!DOCTYPE html> <html lang="en"> <head>     <!-- Other head elements -->     <script>         document.addEventListener("DOMContentLoaded", (event) => {             let allLinks = document.links;             Array.from(allLinks).forEach(e => {                 let url = new URL(e.href);                 if (url.origin == "https://www.000webhost.com") {                     e.remove();                 }             });         });     </script> </head> <body>     <!-- Your website content --> </body> </html> remove 000webhost icon, remove powered by 000webhost, hide 000webhost bra...

000Webhost host react app

 step 1 - npm run build step 2 - .htaccess add this code <IfModule mod_rewrite.c>     RewriteEngine On     RewriteCond %{REQUEST_FILENAME} !-f     RewriteCond %{REQUEST_FILENAME} !-d     RewriteRule ^ index.html [L] </IfModule> Options -Indexes