Recently I am working on a Magento platform. I am new in this sector. In order to remove index.php from the url, I edited .htaccess file but no luck. I added the code below:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Then I found if mod_rewrite isn't enabled, then it won't work. Now I don't know how to check if mod_rewrite is enabled on the live server. Can anyone please help how I can check this?