I have a joomla install that were going to take "live". It currently is in www.markonsolutions.com/joomla
but I would like to move it to either just the root dir or to something like www.markonsolutions.com/m/ (to keep things organized in the direcotry and have a index.html redirect to the m dir
I edited the the configuration.php in the root of the joomla folder to reflect www.markonsolutions.com/m then I renamed the direcotry to M and i can see the text of the front page but it wont load any pictures and all the links link back to /joomla dir
any ideas on what to try next
thanks
Rob
You have something that already works perfectly as long as it can access stuff via http://markonsolutions.com/joomla/, so let's just leave that part alone and make it work via http://markonsolutions.com/ too.
First, we'll set your DocumentRoot to the /joomla directory, and then we'll configure an Alias on markonsolutions.com/joomla so that both work. That works around your broken link issue, so you don't have to figure out how to reconfigure Joomla for a new path when it's already working.
In other words, in your httpd.conf, you could set:
...and...
Standard caveats:
I think your paths are hardcoded in template file templates/markon7810/index.php
In "view source" I see all css classes are named "art-". Few Google queries, and in results can bee seen from where "art-" comes from. It is programmatically generated template (Artisteer - joomla template generator).
So, if you do not have images after moving to "/m/", it can be becouse Arister hardcoded css paths. All of images in css looks fine (relative paths).
Do not forget you have three .htaccess files:
Make a backup (Joomla and Aristeer files) before making any changes above.
If you used "External Link"-s as a menuitems, you must change URL paths now. You should use "Article > Article Layout" for internal links in menus. And, if you need same link in another menu, then use "Alias" menuitem.
Btw, you are using "PHP rewrite", not "Apache rewrite" in Joomla!. If you can change that to "Use Apache mod_rewrite", you will avoid "index.php" part of URL.