Home > Net >  Is there a way to make a custom about blank page?
Is there a way to make a custom about blank page?

Time:08-15

I'm currently working on my website and I had kept some placeholder links in it without linking it to any place, once open I get to the webpage about:blank#blocked , I was wondering if I could replace the blank screen and add a custom page maybe with .htaccess

http://rhysjosmin.tk/Subpages/Ongoing Projects/Ongoing.html The link

CodePudding user response:

No. When clicking invalid links such as http:// the browser does not know what to do and redirects you to some browser specific error page. Your server will not get any requests relating to this action.

I would suggest you replace all placeholder links with a valid link, let's say http://rhysjosmin.tk/Subpages/Placeholder.html, and create your custom page there.

  • Related