2012-05-07 149 views
0

我試圖在Web服務器上安裝Symfony2,但我有一個關於URL的問題。在Web服務器上安裝Symfony2

我想安裝它在這個網址。

http://mywebsite.com/gestor 

因此,可以放在/ web文件夾分配的文件放到這個目錄(gestor),並把其他人(/應用程序,/ bin中,/ src目錄...)在另一條路徑的服務器(一個讓他們私人的,也不可能獲得通過URL?

這是最好的辦法嗎?只要做到這一點,並修改app.php要求?

回答

0

我會盡力幫助你,但我不是真正的專家在這個話題上?你在共享或專用主機上安裝?

如果你是在一個專用主機,你可以去here

但我假設你是一個共享的主機(KBrogan提供)安裝: 任何人都可以點我如何mod_rewrite的www.site.com/appname/web/app.php到更性感網址www.site.com會自動重定向到www.site.com/appname ...而不檢查URL到長版本?

<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 
相關問題