Hello,
In my Yii 2.0 project i have a doxygen project at:
app\doxygen\index.html
Can someone help me create a link to this file that will open the doxygen project in a new browser tab.
Thanks!
Paul
Hello,
In my Yii 2.0 project i have a doxygen project at:
app\doxygen\index.html
Can someone help me create a link to this file that will open the doxygen project in a new browser tab.
Thanks!
Paul
It’s better to config subdomain (for example, docs.yourdomain.com) in you webserver and bind it with ‘app/doxygen’ folder.
Good advice. I added an Alias in my Apache .conf and action in my controller.
All Set!
-paul
Alias /doxygen "C:/wamp64/www/doc/doxygen/html/"
public function actionDoxygen()
{
return $this->redirect("/doxygen");
}