[SalesForce] Not able to open Visualforce page

I am getting this error while opening visualforce page :

The link you followed isn’t valid. This page requires a CSRF
confirmation token. Report this error to your Salesforce
administrator.

This is VF code. What can be the issue ?

<apex:page  sidebar="true" showHeader="true" >
</apex:page>

Best Answer

believe you have enabled the Require CSRF protection on GET requests checkbox on the page.

if you uncheck this checkbox then the page should load fine.

Go to Setup -> Develop -> Pages -> select your page and edit it to remove this checkbox.

enter image description here

you can refer these salesforce articles for additional information on when and why this checkbox is used.

Defining Visualforce Pages

Secure Coding Cross Site Request Forgery

Related Topic