Hello everyone, I'm evaluating the transition from Vtiger to espocrm excellent product, unfortunately I have problems in configuring the portal locally, my configuration is as follows:
installation path var/www/crmrating
I created the portal that gave me the following address
but continue to respond 404 Not Found
My .htaccess of the portal directory is RewriteEngine On
# Some hosts may require you to use the `RewriteBase` directive.
# If you need to use the `RewriteBase` directive, it should be the
# absolute physical path to the directory that contains this htaccess file.
#
# RewriteBase /
RewriteRule .* - [E=HTTP_ESPO_CGI_AUTH:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
RewriteCond %{HTTP_HOST} ^10.1.1.238/crmrating/$
RewriteRule ^client - [L]
RewriteCond %{HTTP_HOST} ^10.1.1.238/crmrating/$
RewriteCond %{REQUEST_URI} !^/portal/5b5880696a332b552/.*$
RewriteRule ^(.*)$ /portal/5b5880696a332b552/$1 [L]
What should I do ? Thank you
Comment