: Removing "product.php" in URL using .htaccess The current URL: http://www.example.com/product.php/sample-product.html. I want change it to: http://www.example.com/sample-product.html
The current URL: www.example.com/product.php/sample-product.html.
I want change it to: www.example.com/sample-product.html
More posts by @Chiappetta492
1 Comments
Sorted by latest first Latest Oldest Best
You can remove it with URL Rewriting like that :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /product.php/ [L]
</IfModule>
Place this code in .htaccess at root.
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.