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.
Wie sieht's denn damit aus?Dennis Wronka hat gesagt.:Schau doch einfach mal in der httpd.conf mit welchem User Apache laeuft.
LoadModule authz_user_module modules/mod_authz_user.so
# User home directories
Include conf/extra/httpd-userdir.conf
Hier die http-userdir.conf
<IfModule userdir_module>
#
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received. Note that you must also set
# the default access control for these directories, as in the example below.
#
UserDir "C:/dasi/website"
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
<Directory c:/dasi/website>
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
Order deny,allow
Allow from all
</LimitExcept>
</Directory>
</IfModule>
Moeglicherweise mit anderen User- und Gruppennamen, aber es sollte sich irgendwas von wegen User und Group finden lassen.httpd.conf hat gesagt.:User nobody
Group nobody
echo get_current_user().' - '.getmyuid().':'.getmygid();
SYSTEM - 0:0