i want an htaccess which can change it to look like http://127.0.0.1:8887/mysite/Products/
also it should keep the query intact so that i can use it in the page
i want an htaccess which can change it to look like http://127.0.0.1:8887/mysite/Products/
also it should keep the query intact so that i can use it in the page
use it and enjoy :
RewriteEngine On
RewriteBase /
# Redirect /index?id=2 to /index/2
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+index\?id=([^&\s]+) [NC]
RewriteRule ^ /index?%1 [R=302,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [QSA,L]