I want to design a new website. I place left navi-panel and have some links like this: Link 1 --> page1.html Link 2 --> page2.html ... But I want to hide page by filter like this: <a href=?page=namepage1>link 1[/url] <a href=?page=namepage2>link 2[/url] And when users click link 1, browser will be redirect to page1.html... Please help me how to do! Thanks
Goes like this: <a href="http://www.domain.com/link1.html">link 1</a> <a href="http://www.domain.com/link2.html">link 2</a> HTML:
Thanks for your reply but that's not for me. I need to hide page name. If I use php code, I could use redirect method. But my host dont support PHP code, HTML only.
I want url like this: __http://mydomain.com/?page=pagex And browser will be redirect to a page .html (about.html, contact.html, etc...) <a href=?page=about>About Us</a> --> open page about.html ... I want to hide name of page, not hide in status bar. Thanks for your help!