Is there a best practice for creating absolute URLs using the Zend framework? I wonder if there is some helper or if this would just be concatenating the scheme, host, etc. from the $_SERVER variable and then add the relative path generated by Zend.
|
phpfour's way is OK, but you have to check for https://, ftp:// and mailto: too... :) I prefefer having all urls root-absolute (
|
|||||||||||||
|
|
Without mvc
or with mvc
|
|||
|
|
|
In my applications, I keep a "baseUrl" in my application config and I assign that to registry on bootstrapping. Later I use the following View Helper to generate the URL:
Benefit: I can make any change on all the URLs in the view from one place. Hope this helps. |
|||||
|
|
I wouldnt use $_SERVER, I would use the values from There could be a better way though... |
|||
|
|