Skip to main content

Permanent URL #redirect http to https #80 #443 #nginx #linux #apache


Configuration for nginx, add this code to /etc/nginx/conf.d/redirect.conf
#Nginx

server {
listen 80;
server_name example.com www.example.com;
return 301 https://$server_name$request_uri;
}


Configuration for APACHE, add this code to /etc/httpd/conf.d/redirect.conf
#Apache

<virtualhost *:80>
ServerName  example.com
ServerAlias  www.example.com
Redirect / https://example.com/
</virtualhost>

Comments

Popular posts from this blog

upload file type rocket chat #Accepted file upload. Can not send .xlsx

Enabling File format for upload at ROCKET CHAT application/msword   - for .doc application/vnd.openxmlformats-officedocument.wordprocessingml.document   - for .docx application/vnd.ms-excel   - for xls application/vnd.openxmlformats-officedocument.spreadsheetml.sheet   - for .xlsx application/vnd.ms-powerpoint   - for .ppt application/vnd.openxmlformats-officedocument.presentationml.presentation   - for .pptx image/*,audio/*,video/*,application/zip,application/x-rar-compressed,application/pdf,text/plain,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet