Не удается скрыть расширения .html в URL, что-то не так с моим htaccess? - PullRequest
0 голосов
/ 18 апреля 2019

Не уверен, если это на стороне сервера, но я не могу скрыть .html от URL моих сайтов, я сделал что-то не так?

# Do not remove this line or mod_rewrite rules and search engine friendly URLs will stop working
RewriteBase /

Options -Indexes 
RewriteEngine on
RewriteBase /

RewriteRule ^vid/?$   /x2.html
RewriteRule ^img/?$   /x2.html
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^([^\.]+)$ $1.html [NC,L]

ErrorDocument 404 http://site/error.html
ErrorDocument 403 http://site/error.html
...