Go To Page Without Going Through Index.php

HI,

Is it possible to go to a page without going through index.php?

I would like to render a page with data without showing the menu, logo etc of the website, but still using the YII models etc. How would such a URL look?

I am not talking about URL rewriting or hiding the index.php in the URL. I want to render a YII view with the YII models, but not show the menu and all the other things on the view.

You should use another layout for controller or action where you don’t want to display menu and others(check public controller properties).

Yes, that makes sense. Thank you.