Hello, help please deal with such a question. How to remove the end of the site: http://site.ru/aboutus.html To get it like this: http://site.ru/aboutus/ If possible, explain in more detail.

1 answer 1

We take and create in the root of the site a .htaccess file, this is a kind of configuration for the server. There we write:

 RewriteEngine on - это мы включили "парсер" поданного на сервер url RewriteRule ^aboutus/$ aboutus.html 

The first parameter is a regular expression (template for the parser), everything that will fit it will be redirected to the address specified in the second parameter

  • Thanks for the help. - Michael 74