我很難決定如何讓網站的網址更清潔。事情是,它是用Angular和Symfony2完成的。 Angular提供前端,而Symfony2提供api。如何正確設置網站的網址
這裏是我的網站的結構:
/api
/app => configurations go here
/bin => binaries
/src => your bundles/MVC code
/vendor => Symfony and 3rd party bundles
/web => this is where the web server document root should be pointed to
/front
/api -> Symlink to /api/web in the symfony part, working, but with app.php and app_dev.php
/css -> frontend CSS
/img -> frontend Images
/js -> frontend JS for AngularJS
/lib
/partials -> html templates used by AngularJS
index.html
現在我得到的網址是www.project.dev/這是家庭,由AngularJS(/前方)呈現,完美的作品,並www.project.dev/ API /應用程序(_dev).PHP/......在Symfony2的渲染,但我想刪除的部分:
app(_dev).php
我有兩個空的.htaccess中,/和/ API,是否需要使用它們?還是我必須使用Angular-route系統? 我想怎麼做?
我編輯我的問題,所以你可以更好地瞭解=) – Romain 2014-10-07 17:51:39
你看,我提到的最後一個環節? [這篇文章](http://stackoverflow.com/questions/11149526/symfony2-rewrite-rules-htaccess-app-php)顯示你可以放在.htaccess文件中的網頁目錄 – Sehael 2014-10-07 19:38:11
是的,我曾嘗試過張貼和我想知道,也許它沒有工作,因爲我的具體結構。 – Romain 2014-10-08 07:47:37