Last active
September 1, 2022 06:07
-
-
Save oozman/5530016 to your computer and use it in GitHub Desktop.
Revisions
-
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ And add this to the bottom of the file: ============= Step 2: Go to [your XAMPP directory]/apache/conf/httpd-xampp.conf Step 3: Go to the bottom of the file and copy & paste this code: -
Omar Usman revised this gist
May 7, 2013 . No changes.There are no files selected for viewing
-
Omar Usman renamed this gist
May 7, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,8 +2,9 @@ Step 1: Go to: C:\Windows\System32\Drivers\etc\hosts And add this to the bottom of the file: ============= 127.0.0.1 your.domain.com ============= Step 2: Go to [your xampp directory]/apache/conf/httpd-xampp.conf -
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ And add this to the bottom of the file: Step 2: Go to [your xampp directory]/apache/conf/httpd-xampp.conf Step 3: Go to the bottom of the file and copy & paste this code: -
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Go to the bottom of the file and copy & paste this code: * Replace [PATH TO YOUR CUSTOM FOLDER] to the folder where your files are located. Ex: C:/my/www/folder/ * your.domain.com must be the same on Step 1 & Step 3 Step 4: -
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -34,4 +34,5 @@ Step 4: Stop Apache on XAMPP, wait for 5 seconds, then click "Start" to start again your Apache. If all things go well, you can go to your browser, type your.domain.com and it will now happily point to your custom local folder. -
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -33,3 +33,5 @@ Go to the bottom of the file and copy & paste this code: Step 4: Stop Apache on XAMPP, wait for 5 seconds, then click "Start" to start again your Apache. If all things go well, you can go to your browser, type your.domain.com and it will now happily point to your custom local folder. -
Omar Usman revised this gist
May 7, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Go to the bottom of the file and copy & paste this code: </VirtualHost> ============= * Replace [PATH TO YOUR CUSTOM FOLDER] to the folder where your files are located. Ex: C:/my/www/folder/ * you.domain.com must be the same on Step 1 & Step 3 -
Omar Usman created this gist
May 7, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ Step 1: Go to: C:\Windows\System32\Drivers\etc\hosts And add this to the bottom of the file: 127.0.0.1 your.domain.com Step 2: Go to [your xampp directory]/apache/conf/httpd.conf Step 3: Go to the bottom of the file and copy & paste this code: ============= <VirtualHost *:80> DocumentRoot "[PATH TO YOUR CUSTOM FOLDER]" ServerName your.domain.com <Directory "[PATH TO YOUR CUSTOM FOLDER]"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Require all granted </Directory> </VirtualHost> ============= * Replace [[PATH TO YOUR CUSTOM FOLDER] to the folder where your files are located. Ex: C:/my/www/folder/ * you.domain.com must be the same on Step 1 & Step 3 Step 4: Stop Apache on XAMPP, wait for 5 seconds, then click "Start" to start again your Apache.