Welcome Guest, Not a member yet? Register   Sign In
How to fully hide url, only shows www.website.com
#1

Hi everyone.
Is it possible to do this : hide full url completely, for example if my website name is www.website.com, whenever page visitor goes in our website, the browser only show www.website.com. Is it possible to do? Thanks everyone.
Reply
Reply
#3

(09-16-2018, 08:02 AM)kelapamuda Wrote: Hi everyone.
Is it possible to do this : hide full url completely, for example if my website name is www.website.com, whenever page visitor goes in our website, the browser only show www.website.com. Is it possible to do? Thanks everyone.

i'll give you another idea if this not working with you using CodeIgniter URLs.

just make iframe full page so this will not change your website name [just example ]

1- first put your website files inside folder after the root , like root/MYWEBSITE
2- create index.php file inside root , root/index.php
3- put this code inside index.php page


Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Test Layout</title>
        <style type="text/css">
            body, html
            {
                margin: 0; padding: 0; height: 100%; overflow: hidden;
            }

            #content
            {
                position:absolute; left: 0; right: 0; bottom: 0; top: 0px;
            }
        </style>
    </head>
    <body>
        <div id="content">
            <iframe width="100%" height="100%" frameborder="0" src="http://www.yourwebsiteurl.com/MYWEBSITE " />
        </div>
    </body>
</html>
Reply




Theme © iAndrew 2016 - Forum software by © MyBB