Does anyone know exactly what happens when you change your Zend site at, say, foo.com/ to foo.com/subfolder/ ? I notice that routing breaks and either I am not using front_controller.setBaseUrl() properly or it has no effect. I am unable to find any formal documentation at the Zend site about this issue.
|
|
|
|||
|
|
|
|
The most likely cause of your problem is that you need to set the Assuming your rewrite rules look something like this:
And assuming you are moving your site into the
Your complete rewrite rules should look like so:
PS: The Front Controller/Request Object/Router will 99% of the time correctly determine the You can, at any time get the
|
||
|
|
|
You need to make sure you prepend the /newfolder/ to all your set_include_path statements in the config. Then setBaseURl should work properly. |
||
|
|
