How to set the base url in drupal

前端 未结 3 1419
花落未央
花落未央 2021-01-12 13:16

Where I can set the base url for drupal site. Currently when I go to the site in my localhost, it redirects to the original site. Please help me.

I have tried settin

相关标签:
3条回答
  • 2021-01-12 14:04

    settings.php

    $base_url = 'http://baseurl.com';
    

    EDIT You edited as I posted this. Can you paste the portion of your settings.php file where you're setting it? Are you sure there's no other $base_url set elsewhere in settings.php?

    0 讨论(0)
  • 2021-01-12 14:06

    I faced a similar problem like this after restoring database from my remote server to my localhost, turns out it was being caused by "mobile tools" which hijacks the redirection of my site whenever it is installed. disabling it before backing up or exporting the database solved the problem. Just posting in case someone ran into this hiccup.

    0 讨论(0)
  • 2021-01-12 14:07

    Usually you don't need to set base_url, you simply have to clear drupal cache.

    0 讨论(0)
提交回复
热议问题