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.
- one[mod_rewrite] [1] [1]: ruseller.com/lessons.php?rub=29&id=740 - Opalosolo
- Thanks for the help. - Michael
|
1 answer
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
|