WebSite X5Help Center

 
Marius T.
Marius T.
User

.htaccess File  en

Autor: Marius T.
Visitado 1027, Seguidores 1, Compartilhado 0  

Hi

I have asearched for a subject about editing the .htaccess file but there is no topic.

Brief the file has this conent:

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php56” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php56___lsphp .php .php5 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit

ANd I need to ad a line like this for redirect:

Redirect / http://www.softedu.eu/

The question is where and how to edit in order to ad this line. I have no clue about Php.

Publicado em
9 RESPOSTAS - 1 ÚTIL - 1 CORRIGIR
Marius T.
Marius T.
User
Autor

Thanks Andre. As I have written I have zero knowledge about Php. This is the reason I have asked because after reading your link I am not clear: the line thaT I have to add is Redirect / http://www.softedu.eu/
Also I can see that every comment inside .htaccess begin with # and every line code begin with < and it is ending also with >.

Which is the correct syntax to add my line?

Redirect / http://www.softedu.eu/

or

<Redirect / http://www.softedu.eu/>

Ler mais
Publicado em de Marius T.
Claudio D.
Claudio D.
Moderator

Htaccess is NOT in PHP language.


What would you like to do with that redirect ?

Ler mais
Publicado em de Claudio D.
Franz-Josef H.
Franz-Josef H.
Moderator

if you want to redirect all pages of the existing website to a new domain and the navigation structure should remain the same, use this code

RewriteEngine On

Redirect 301 / www.softedu.eu/

when redirecting with a changed navigation structure, you still have to specify the start page, so use this code

RewriteEngine On

Redirect 301 / www.softedu.eu/index.html 

Ler mais
Publicado em de Franz-Josef H.
Marius T.
Marius T.
User
Autor

I try to redirect the entire web site to www version because now there are both www and no-www available.

Thanks Franz-Josef and Claudio.

Ler mais
Publicado em de Marius T.
Franz-Josef H.
Franz-Josef H.
Moderator

Since that's a slightly different topic, you'd better use this code to forward everything that is not www to the domain with www 

RewriteEngine On

RewriteCond %{HTTP_HOST} !^www\.softedu\.eu$ [NC]

RewriteRule ^(.*)$ https://www.softedu.eu/$1 [R=301,L]

Ler mais
Publicado em de Franz-Josef H.
Marius T.
Marius T.
User
Autor

So I will copy the code bellow the last row exactly like this? Without last S because is not https but http.

Thank you so much, really appreciate!

Ler mais
Publicado em de Marius T.
Franz-Josef H.
Franz-Josef H.
Moderator

you need all three lines from the post above. It's correct: if you don't have an SSL certificate, you only write http and not https.

Ler mais
Publicado em de Franz-Josef H.
Marius T.
Marius T.
User
Autor

Many thanks once again! 

Ler mais
Publicado em de Marius T.