You must be logged in to reply to this topic. Click here to login or register
Forum › Forum › Magento Theme › SNS Nazic – Magento Theme › .htaccess.sample SNSNazic Sample theme – remove index.php from URL’s
I’ve installed SNSNazic Sample and started working on it. This is my store https://cvidaskateshop.com.br/index.php/camiseta-diamond-422.html I want to remove that “index.php” in the middle of URL. Tried many many ways, and when i set “Friendly URL to YES in Magento ADM” the “index.php” go away also I have set my .htacess.sample like this:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
This gives me back URL’s without the “index.php” but those URL’s comes with 404 ERROR Not Found. What can i Do?
You must be logged in to reply to this topic. Click here to login or register