我正在本地工作Yii2项目并且它工作正常,现在在我的域上我有子文件夹上的文件,所以它将是domain.com/yiiproject。我使用Yii2高级模板,所以当我输入domain.com/yiiproject时,它会自动显示前端项目。
我尝试在设置中添加baseUrl参数,但没有运气,有人知道如何使用Yii2高级模板吗?
由于
答案 0 :(得分:1)
只需将您的条目index.php脚本复制到所需的目录中,并确保// Monitor menu/dock theme changes...
[[NSDistributedNotificationCenter defaultCenter] addObserver: self selector: @selector(themeChange:) name:@"AppleInterfaceThemeChangedNotification" object: NULL];
//
-(void) themeChange :(NSNotification *) notification
{
NSLog (@"%@", notification);
}
命令指向正确的文件夹/文件。可以工作。
require
答案 1 :(得分:1)
制作.htaccess
档案:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$
RewriteCond %{REQUEST_URI} !^/yiiproject/
RewriteRule (.*) /yiiproject/$1