skip to Main Content

How to enable virtualhost in xampp – Apache

I am configure virtualhost on Xampp so that I can run an advanced Yii2 project (with front and backend application), I have followed this instruction and my httpd-vhosts.conf looks like this <VirtualHost *:8081> ServerName winnersprimary.ac.tz DocumentRoot 'c:xampphtdocswinnersprimaryfrontendweb' <Directory 'c:xampphtdocswinnersprimaryfrontendweb'> #…

VIEW QUESTION

Redirect from main page – Apache

I have a conditions: a) Redirect from help.example.com to example.com/support b) Redirect from other page, like help.example.com/catalog to example.com/catalog This all I do in .htaccess file. My code redirect me only on example.com/support RewriteCond %{HTTP_HOST}${REQUEST_URI} ^help.example.com/(.+) RewriteRule ^(.+)$ example.com/$1 [R=301,L]…

VIEW QUESTION
Back To Top
Search