yii2hostingcgi-binhtdocs

How'd I install yii2 advanced on free hosting


After I connect via ftp I have 2 directories: htdocs and cgi-bin I tried to create a folder inside htdocs and upload yii2 distributive there but i got nothing


Solution

  • solved via .htaccess

    AddDefaultCharset UTF-8
    
    Options -Indexes
    Options FollowSymlinks
    
    RewriteEngine On
    
    RewriteCond %{REQUEST_URI} ^/(subdirectory/admin)
    RewriteRule ^admin(\/?.*)$ backend/web/$1 [L]
    
    RewriteCond %{REQUEST_URI} ^/(subdirectory)
    RewriteRule ^(\/?.*)$ frontend/web/$1 [L]