We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 35345
    • 7 Posts
    I have a modx site which is in
    http://www.batterupforals.org/~batterup/

    I need to change the url to http://www.batterupforals.org/.
    Actually all my files are in root folder itself. How should I change this url.

    Thanks in advance.
      Best Regards,
      Libin
      • 35345
      • 7 Posts
      I found the solution myself.
      Goto : core/config/config.inc.php
      and edit the $modx_base_url there.
      Its worked. !
        Best Regards,
        Libin
        • 33968
        • 863 Posts
        Hi there - that might work but you might have to do it again every time you upgrade. That's why changing the core files is discouraged. But luckily MODX has been designed in a way that you never need to do that!

        The better way to handle a modx install in a subfolder is to amend the RewriteBase line in your .htaccess file:

        # Friendly URLs Part
        RewriteEngine On
        RewriteBase /~batterup
        


        Now all your urls will be relative to the /~batterup folder.