A
A
Alexander Konovalov2019-04-09 16:10:26
Joomla
Alexander Konovalov, 2019-04-09 16:10:26

How to remove www joomla?

Hello! How to remove www from address in joomla? Tried different options, nothing works. The site stops opening at all, the browser issues: Page unavailable The site septik-astra.ru redirected too many times.
https://vk.cc/9grlDq

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Notan Royamov, 2019-04-10
@Royamov

Add the following lines of code to .htaccess after the RewriteEngine On line:

# если сайт доступен по https
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]

# если сайт доступен по http
RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

Joomla also has other types of page duplicates, such as those with and without a slash at the end.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question