2012-05-07 2 views
0

웹 서버에 Symfony2를 설치하려고하지만 URL에 대해 하나의 질문이 있습니다.웹 서버에 Symfony2 설치

이 URL에 설치하고 싶습니다.

http://mywebsite.com/gestor 

그래서,이 디렉토리 (gestor)에/웹 폴더에 할당 된 파일을 넣어 (서버에서 다른 경로 (/ 응용 프로그램/빈/SRC를 ...) 다른 사람을 넣을 수 있습니다 URL을 통해 액세스에 개인 및 불가능하게? 가장 좋은 방법입니다

를? 그냥을하고 app.php을 수정 내가 해요?

답변

0
내가 당신을 도와하려고합니다

하지만 필요 이 주제에 대해 전문가가 아니십니까? 공유 또는 전용 호스팅에 설치 하시겠습니까?

전용 호스팅, 당신은 here 갈 수 있습니다.

하지만 나는 공유 호스팅 (KBrogan의 호의)에 설치하고 있다고 가정합니다. 누구나 나를 mod_rewrite하는 방법을 가르쳐 줄 수 있습니까? www.site.com/appname/web/app.php보다 섹시한 URL 긴 버전의 URL을 확인하지 않고 www.site.com/appname으로 자동으로 리디렉션되는 www.site.com?

<bernardnapoleon> i've been googling for hours now. >>< 
<helios_ag> r u on shared hosting? 
<bernardnapoleon> yes 
<KBrogan> bernard, i have just the solution for you if you would like everything redirected to site.com/index.php with your content stored in webroot/Symfony 
<bernardnapoleon> really? you're amazing! 
<bernardnapoleon> that's it 
<KBrogan> 1) move Symfony/web to webroot/ 
<bernardnapoleon> okay but wouldn't that break the folder structure of symfony? 
<KBrogan> nope 
<KBrogan> 2) change the require_once tags in both files webroot/app(_dev)?.php to point to Symfony/app/... instead of pointing to ../Symfony/app 
<KBrogan> example: require_once __DIR__.'/Symfony/app/AppKernel.php'; 
<bernardnapoleon> oks! done 
<KBrogan> make .htaccess in webroot this: 
<KBrogan> RedirectMatch 404 "^/Symfony(/.*)?$" 
<KBrogan> RedirectMatch 404 "/\..*" 
<KBrogan> RedirectMatch 404 "/(config||app(_dev)?).php" 
<KBrogan> <IfModule mod_rewrite.c> 
<KBrogan>  RewriteEngine On 
<KBrogan>  RewriteCond %{REQUEST_FILENAME} !-f 
<KBrogan>  RewriteRule ^(.*)$ index.php [QSA,L] 
<KBrogan> </IfModule> 
<KBrogan> last step - make a symlink index.php => app_dev.php 
<bernardnapoleon> ohhhhhhhhhhhhhhhhhhhhhhhhhh................... 
<KBrogan> Do you have shell access on your host bernard? 
<bernardnapoleon> nope 
<helios_ag> not good idea to publish dev env on prod env 
<bernardnapoleon> helios_ag: yep yep. 
<KBrogan> dev env ip blacklists itself. Not really an issue until you've deployed 
<bernardnapoleon> KBrogan: Thank you! 
<bernardnapoleon> i'll just rename app.php to index.php incase i can't do symlink 
<KBrogan> if you don' t have shell access: either make a link with php, or rename the app.php 
<bernardnapoleon> yeah. Thanks Again Bro 
<bernardnapoleon> =) 
<bernardnapoleon> all this time I thought the answer is in mod_rewrite 
<KBrogan> i'm quite happy with the results there. Spent a couple of hours tweaking it 
<KBrogan> I've got shell access, so I set up an alias dev and an alias prod which switches the environment for me and clears the cache 
<KBrogan> Question: is there a twif filter which pretty prints all your html? 
<KBrogan> twig* 
<bernardnapoleon> oh cool. 
<bernardnapoleon> not an expert but I think you have to post process that. 
<KBrogan> by the way bernard, the RedirectMatch 404 "/\..*" bit will hide all of your .htaccess files and make them return 404 instead of 403 
<KBrogan> as well as any other file that stats with . 
<KBrogan> and any other file besides /Symfony/* , index.php, app_dev.php, app.php, will be served directly by Apache 
<bernardnapoleon> ohhhh