How to use htaccess to change site.com/directory/ to site.com/ ?
If you only want http://kingphp.com/money directory become http://kingphp.com, use:RewriteRule ^catalog/$ / [L] If you want all directories become http://kingphp.com, use: RewriteEngine On RewriteBase / RewriteRule ^([^/]+)$ /catalog/$1 [L] RewriteRule ^$ /catalog/ [L] Note:If you have other subfolders in there (in… Read moreHow to use htaccess to change site.com/directory/ to site.com/ ?