sherrieagle
New Member
I've set up a local Git repository outside my \[code\]Sites\[/code\] folder. In hindsight, this was possibly a mistake.I want to test one of the Git files, but my test html page needs to be inside the \[code\]Sites\[/code\] folder to run with Apache under \[code\]~localhost\[/code\].So can I get the html page \[code\]http://~localhost/MyUserName/test.html\[/code\] (which has the path \[code\]MyUserName/Sites/test.html\[/code\]) to find the script with the path \[code\]MyUserName/GitHub/myScript.js\[/code\]? Or does the Git folder need to move to be within \[code\]Sites\[/code\]?I tried the following without success:\[code\]<script src="http://stackoverflow.com/questions/GitHub/myScript.js" type="text/javascript"></script>\[/code\]Thanks.