skip to Main Content

apache not reading updated symlink

I have a symlink at /var/www/domain.example/web/MY_SYMLINK pointing to /var/www/domain.example/web/SOME_FOLDER. This is defined as my document root for the website. Then I run ln -sfn to change the symlink to something like /var/www/domain.example/web/NEW_FOLDER. So far, so good. If I run ls…

VIEW QUESTION

htaccess rewrite from http to https – Apache

Currently I redirect all http users (www or non-www) of upscfever.com to http://upscfever.com/upsc-fever/index.html using RewriteEngine on RewriteCond %{HTTP_HOST} ^upscfever.com$ [OR] RewriteCond %{HTTP_HOST} ^www.upscfever.com$ RewriteRule ^/?$ "http://upscfever.com/upsc-fever/index.html" [R=301,L] Now I want all users to shift to https so I modified as…

VIEW QUESTION
Back To Top
Search