Hello! how to change a url through htacess. wanted that url:
http://localhost/site/product/view/Mi00OTI/golbolaver
look like this:
http://localhost/site/view/Mi00OTI/golbolaver
Hello! how to change a url through htacess. wanted that url:
http://localhost/site/product/view/Mi00OTI/golbolaver
look like this:
http://localhost/site/view/Mi00OTI/golbolaver
A quick fix
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^site/view/Mi00OTI/golbolaver(|/)$ site/product/view/Mi00OTI/golbolaver
Read more at