Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 533 Bytes

install-application-template.md

File metadata and controls

18 lines (12 loc) · 533 Bytes

Install an application template

Enter the php container

composer create-project yiisoft/yii2-app-basic /app

Open in your browser

http://127.0.0.1:8101

When running Apache you need a configuration like the following to use enablePrettyUrl in .htaccess in your public web folder

RewriteEngine on
# If a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward it to index.php
RewriteRule . index.php