How to launch Concrete5 on main website?

Permalink
Hi all! Forgive me if this is too basic a question. I can't seem to do this.

I have an old website with a regular URL, but I'd like to be able to access my Concrete5 website at the current URL. Currently, the Concrete5 build is published, but only accessible at a different url (I want the build to display at mysite.com, but currently it's only accessible at mysite.com/concrete5).

Any help on this?

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
If you enable pretty urls, you will have a .htaccess file in the root of your site with code that looks something like this
# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
# -- concrete5 urls end --

change this line
RewriteBase /

To this..
RewriteBase /concrete5/