Routing Error 404 Page April 10, 2021, 01:08:41 PM Good day team, Has anyone experienced issues with page routing after deploying project to Ubuntu Apache2 host server. After logging in ,after the index page...I am getting 404 errors all pages. But XAMPP is running fine.I have setup ssl encryption for the site but that shouldn't affect routing.I have also enabled mod_rewrite on the Apache Server.Apache.conf directory settings:<Directory /var/www/> Options Indexes FollowSymLinks AllowOverride All Require all granted</Directory>Application .htaccess file:RewriteEngine onOptions -IndexesRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ index.php?request_uri=$1 [NC,L,QSA,B]App Virtualhost config:<VirtualHost *:80> ServerAdmin admin@app DocumentRoot /var/www/html/app ServerName app <Directory /var/www/html/app/> Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny allow from all </Directory> <FilesMatch \.php$> # 2.4.10+ can proxy to unix socket SetHandler "proxy:unix:/run/php/php7.4-fpm.sock|fcgi://localhost" </FilesMatch> ErrorLog ${APACHE_LOG_DIR}/app_error.log CustomLog ${APACHE_LOG_DIR}/app_access.log combinedRewriteEngine onRewriteCond %{SERVER_NAME} =appRewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]</VirtualHost> Quote Selected