Hi Thanks for your response. I get
"Not Found
The requested URL /content/client_name/flex/rps/FLEXBSLRWD/en_us/home/travel.html was not found on this server."
in my browser while accessing through dispatcher host name + content path. The page exists and published in publisher.
I have allowed - /0023 { /type "allow" /url "/content/*} in my filter.any file.
Only the access_log says below message (No other logs updates when I hit the URL)
==> access_log <==
10.216.57.119 - - [20/May/2019:08:05:36 +0000] "GET /content/client_name/flex/rps/FLEXBSLRWD/en_us/home/travel.html HTTP/1.1" 404 262
I have only one properly configured virtual hosts at this point with below configuration
<VirtualHost *:80>
ServerName $Server_hostname
ServerAlias $Server_IP
DocumentRoot /var/www/html/client
<Directory /var/www/html/client>
Options -Indexes -Includes
<IfModule disp_apache2.c>
SetHandler dispatcher-handler
ModMimeUsePathInfo On
</IfModule>
AllowOverride None
Require all granted
</Directory>
ErrorLog logs/client_error.log
LogLevel warn
TransferLog logs/client_access.log
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) /content/client_name/flex/cps/USBCRPFLEX/en_us/home.html [PT,L]
</VirtualHost>
Any suggestions please?