I had upgrade my server to apache 2.4. After doing some configuration some .htaccess file is not working.
Following .htaccess is not working. It jest return 404 error. But this URL is working in land area.
RewriteEngine On
RewriteRule ^(.*)$ http://10.0.2.40/LandBank/$1 [NC,P]
But following .htaccess is working.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
How can it troubleshoot this?