
내 Linux 시스템에는 다음 2개의 파일이 있습니다.
/var/www/index.html= www.mywebsite.com
/var/www/foo/bar/index.html= www.mywebsite.com/foo/bar/index.html
Apache에서 이를 설정하는 방법을 알아내려고 노력 중입니다. 사용자가 "www.mywebsite.com/somedirectory" 그들은 "/var/www/foo/bar/index.html" 파일.
그래서....
/var/www/index.html = www.mywebsite.com
/var/www/food/bar/index.html = www.mywebsite.com/somedirectory
답변1
특정 요구 사항과 현재 구성을 명확히 해야 하지만 이를 수행하는 간단한 방법은 다음을 통해 수행됩니다 mod_alias
.
Alias /somedirectory /var/www/foo/bar
그래도 작동하지 않거나 다른 동작이나 더 정교한 논리가 필요한 경우 알려주십시오.