Hello everybody,
I loaded xibo (DigitalSignage) and moved the unzipped folder on my DS213j to the folder / web / xibo.
Now xibo writes that you should show documentRootauf / path / to / xibo-folder / web and there I have my difficulties. I do not know exactly how the .htacess must look. Here is the content of the file:
RewriteEngine On
#RewriteBase /xibo
fix authorization header
RewriteCond %{HTTP:Authorization} .+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
requests for api authorize
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./authorize/.$
RewriteRule ^ api/authorize/index.php [QSA,L]
requests that start with api go down to api/index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./api/.$
RewriteRule ^ api/index.php [QSA,L]
install
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./install/.$
RewriteRule ^ install/index.php [QSA,L]
maintenance
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^./maint/.$
RewriteRule ^ maint/index.php [QSA,L]
all others - i.e. web
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]
can someone tell me here what I have to adjust in the. htaccess file?
then I would have to enter. xibo only in the browser http: // localhost then the installation routine would start …
Thank you very much for an info.