View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000053 | OXID eShop (all versions) | 4.09. SEO, SEO URL | public | 2008-08-28 18:33 | 2012-12-10 13:35 |
Reporter | dainius.bigelis | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Fixed in Version | 4.0.0.0 revision 13895 | ||||
Summary | 0000053: Remove "/home" from url when navigating to home page | ||||
Description | Frontend. Link "Home" (at top-left corner and bottom-left corner of the page) contains the SEO friendly url with "/home/" at the end. Remove this "/home/" from the url, as now it makes 2 different links to the same main page (duplicate content): http://[hostname]/home/ http://[hostname]/ | ||||
Tags | No tags attached. | ||||
Theme | |||||
Browser | All | ||||
PHP Version | 5.2.6 | ||||
Database Version | 5.0.33 | ||||
|
/home/ link also specifies cl=start, for not to go to mallstart class if it is turned on. that is: http://[hostname]/home/ http://[hostname]/ are different urls in 'mallstart on' case, and is configurable at all times in seo admin tab (static url) |
|
possible solutions: 1. make it possible for admin to enter '/' (empty) seo url for static urls in seo tab. so shop admin can make this url to be just hostname himself. 2. for shop url in templates use different logic than static urls, and add shop home url getter, which also checks if shop selector is active and select either just hostname url (if not active) or hostname/home url (if active). 1. is cleaner from shop code logics, but maybe enforces harder configuration for shop admin ??? 2. as a result, url gets auto selected with no need to alter static seo urls, but requires additional handling for this in code side. |
|
Take 2. As simple and stable and logic as possible for shop owners |
|
added home link getter. Getter is applied only on new templates |