I\'m trying to get the following effect (using this local file http://localhost/[company_name]/[project_name]/.htaccess):
http://localhost/[company_name]/[project_name]/.htaccess
http://localhost/[comp
Please add below lines top of .htaccess file
RewriteEngine on #Add Trailing slash for end of the URL RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*[^/])$ /$1/ [L,R]