Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
dev-usr@zend-test:~$ ls -la /var/www/zend-test/project1/
insgesamt 1136
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 .
drwxrwx--- 1 root vboxsf 4096 Mär 11 09:08 ..
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 application
-rwxrwx--- 1 root vboxsf 304 Mär 9 14:55 composer.json
-rwxrwx--- 1 root vboxsf 37127 Mär 9 15:03 composer.lock
-rwxrwx--- 1 root vboxsf 1074598 Mär 16 09:33 composer.phar
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 docs
drwxrwx--- 1 root vboxsf 4096 Mär 17 08:13 .idea
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 library
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:39 public
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 tests
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:34 vendor
-rwxrwx--- 1 root vboxsf 2959 Mär 16 09:37 .zfproject.xml
dev-usr@zend-test:~$ ls -la /var/www/zend-test/project1/application/controllers/
insgesamt 20
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:41 .
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 ..
-rwxrwx--- 1 root vboxsf 1875 Mär 16 09:37 ErrorController.php
-rwxrwx--- 1 root vboxsf 229 Mär 16 09:37 FirstpageController.php
-rwxrwx--- 1 root vboxsf 326 Mär 16 09:41 IndexController.php
dev-usr@zend-test:~$
dev-usr@zend-test:~$
dev-usr@zend-test:~$
dev-usr@zend-test:~$
dev-usr@zend-test:~$
dev-usr@zend-test:~$ ls -la /media/sf_share/web/project1/
insgesamt 1136
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 .
drwxrwx--- 1 root vboxsf 4096 Mär 11 09:08 ..
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 application
-rwxrwx--- 1 root vboxsf 304 Mär 9 14:55 composer.json
-rwxrwx--- 1 root vboxsf 37127 Mär 9 15:03 composer.lock
-rwxrwx--- 1 root vboxsf 1074598 Mär 16 09:33 composer.phar
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 docs
drwxrwx--- 1 root vboxsf 4096 Mär 17 08:13 .idea
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 library
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:39 public
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 tests
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:34 vendor
-rwxrwx--- 1 root vboxsf 2959 Mär 16 09:37 .zfproject.xml
dev-usr@zend-test:~$ ls -la /media/sf_share/web/project1/application/controllers/
insgesamt 20
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:41 .
drwxrwx--- 1 root vboxsf 4096 Mär 16 09:37 ..
-rwxrwx--- 1 root vboxsf 1875 Mär 16 09:37 ErrorController.php
-rwxrwx--- 1 root vboxsf 229 Mär 16 09:37 FirstpageController.php
-rwxrwx--- 1 root vboxsf 326 Mär 16 09:41 IndexController.php
dev-usr@zend-test:~$
public function indexAction()
{
$this->getResponse()->appendBody('IndexController::indexAction');
}
public function indexAction()
{
$this->getResponse()->appendBody('FirstpageController::indexAction');
}
Not Found
The requested URL /firstpage was not found on this server.
Apache/2.4.7 (Ubuntu) Server at zend-test Port 80
<VirtualHost *:80>
ServerAdmin admin@localhost
ServerName zend-test
ServerAlias www.zend-test.loc zend-test.loc
DocumentRoot /var/www/zend-test/project1/public
<Directory /var/www/zend-test/project1/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
# Order allow,deny
# allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>