How to Make an apex page as public
I have created one apex page in an application. And i wanted to access that page with out login. User can see the page directly.
example : http://www.example.com/pls/htmldb/f?p=230
assume above is the application url. and i have created a page. Id is 1.and i made the page with out authentication.
And when i try to access http://www.example.com/pls/htmldb/f?p=230 url still it asking for the login.
when put the :1 after p id, like http://www.example.com/pls/htmldb/f?p=230:1
then page is visible with out authentication.
I need the page to be shown http://www.example.com/pls/htmldb/f?p=230 with this URL.
is there any options in apex to make this work?