3 件の回答
You can conditionally show the standard page or your custom page based on the current user by detecting the User info in your custom VF page controller, then redirecting to the same URL ('edit' for example), but add the nooverride=1 parameter to the URL.
For example, if you have a custom VF page on the Account Edit screen, when someone hits Edit, they get a URL like this:
https://na15.salesforce.com/001i000000PfMas/e?retURL=%2F001i000000PfMas
which will display your custom VF page.
if your page controller builds a URL like this:
https://na15.salesforce.com/001i000000PfMas/e?retURL=%2F001i000000PfMas&nooverride=1
then the standard Account Edit page will be displayed.