Dear Forum,
i installed 3.6.0, stable and running smothtly.
at last, i want to shorten the url from
to
i am using ubuntu 14.01, apache.
in my site enabled config i changed
to
and changed in /var/www/html/espo/data/config.php
to
####
but i receive a 404 from from espo crm (blank white page, with the a footer loaded)
this is the content of my /var/www/html/espo/.htaccess
please help me to figure out the right configuration, to get it set up correctly.
thanks,
Marc
i installed 3.6.0, stable and running smothtly.
at last, i want to shorten the url from
Code:
http://yyyy.xxx/espo/
Code:
http://yyyy.xxx/
in my site enabled config i changed
Code:
DocumentRoot /var/www/html/
Code:
DocumentRoot /var/www/html/espo/
and changed in /var/www/html/espo/data/config.php
Code:
http://yyyy.xxx/espo/
Code:
http://yyyy.xxx/
but i receive a 404 from from espo crm (blank white page, with the a footer loaded)
this is the content of my /var/www/html/espo/.htaccess
Code:
<ifModule mod_headers.c> Header always set Access-Control-Allow-Methods "POST, GET, PUT, PATCH, DELETE" </ifModule> DirectoryIndex index.php index.html <IfModule mod_rewrite.c> RewriteEngine On # PROTECTED DIRECTORIES RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^/?(data|api)/ - [F] RewriteRule ^/?data/config\.php$ - [F] RewriteRule ^/?data/logs/ - [F] RewriteRule ^/?data/cache/ - [F] RewriteRule ^/?data/upload/ - [F] RewriteRule ^/?data/\.backup/ - [F] RewriteRule ^/?application/ - [F] RewriteRule ^/?custom/ - [F] RewriteRule ^/?vendor/ - [F] #END PROTECTED DIRECTORIES RewriteRule .* - [E=HTTP_ESPO_CGI_AUTH:%{HTTP:Authorization}] RewriteRule reset/?$ reset.html [QSA,L] </IfModule>
thanks,
Marc
Comment