.htaccess File
Author: Marius T.
Visited 1541,
Followers 1,
Shared 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.
Posted on the
you can just add code behind the already written code, see internet for help?
Did a googke search for you came here:
https://help.dreamhost.com/hc/en-us/articles/215747748-How-can-I-redirect-and-rewrite-my-URLs-with-an-htaccess-file-
Author
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/>
Htaccess is NOT in PHP language.
What would you like to do with that redirect ?
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
Author
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.
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]
Author
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!
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.
Author
Many thanks once again!