george333 Posted December 1, 2009 Share Posted December 1, 2009 hi I installed V2.x succcessfully (hopefully)... to visit my site must use url for example (www.shoptoshop.gr/catalog) what can i do to work without (catalog) (www.shoptoshop.gr) in advance thanks Link to comment Share on other sites More sharing options...
MrPhil Posted December 1, 2009 Share Posted December 1, 2009 Assuming you're on an Apache server, it has a file called ".htaccess". You can insert commands into .htaccess that redirect references to / to /catalog/. That is, a visitor would see your shop at shoptoshop.gr/ rather than shoptoshop.gr/catalog/. You would adjust your configure.php files to use / instead of /catalog/, so visitors would see links to /<store page> instead of /catalog/<store page>. Try the following: RewriteEngine On RewriteCond %{REQUEST_URI} !^/catalog [NC] RewriteRule ^(.*)$ /catalog/$1 [L] Link to comment Share on other sites More sharing options...
george333 Posted January 27, 2010 Author Share Posted January 27, 2010 A Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.