I changed my Drupal base url in settings.php to " http://www.example.com/subfolder " but root relative paths are still pointing to " http://www.example.com " and not to the correct "subfolder". Any idea what I'm doing wrong? I flushed cache re-edited a couple links to make sure but they're still pointing to the root domain and not to the correct subfolder.
|
feedback
|
closed as off topic by quack quixote Jun 3 '10 at 21:20
Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.
|
I don't know if this answer will help you. If your relative links starts with a slash "/" they are relative to the root. So a relative link "/contact" for example will go to "http://www.example.com/contact" with both base URL. a link to "contact" will go to "http://www.example.com/subfolder/contact" in the first case and to "http://www.example.com/contact" in the second case. | |||||
feedback
|