301 Redirects

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

301 Redirects

Post by toolsup » Mon Feb 14, 2011 1:07 pm

Where are the 301 redirects modified?
Matt

User avatar
mikek
Commander (CMDR)
Commander (CMDR)
Posts: 112
Joined: Wed Oct 15, 2008 9:30 pm
Location: Boston, MA
Contact:

Re: 301 Redirects

Post by mikek » Mon Feb 14, 2011 3:36 pm

You can add the 301 code directly on each page:


<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "http://www.domain.com");
}
</script>
Mike Kolev

toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

Re: 301 Redirects

Post by toolsup » Mon Feb 14, 2011 3:42 pm

I don't think that would work. These are dynamic
We may be moving from another ecom software and obviously want to bring our url's with us.
Matt

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: 301 Redirects

Post by mazhar » Tue Feb 15, 2011 5:13 am

AbleCommerce 7.0.6 supports 301 redirects feature. You can add 301 redirects from admin side. Secondly we provided support of totally custom URL in version 7.0.6. This feature allows you to set product, category and web page URL yourself. You can preserve your old URLs either with custom URLs or 301 redirects feature.

toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

Re: 301 Redirects

Post by toolsup » Tue Feb 15, 2011 5:22 am

That sounds great.
Where in the admin side do you specify that?
I am running the online demo right now and I looked for it, but couldn't find it.
Where would I find it?
Matt

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: 301 Redirects

Post by mazhar » Tue Feb 15, 2011 5:28 am

If you go to Configuremenu item in top horizontal navigation you will see SEO option in there. It contains things related to both features I told.

toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

Re: 301 Redirects

Post by toolsup » Tue Feb 15, 2011 5:32 am

It's not listed under config in the demo that I am running.
Matt

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: 301 Redirects

Post by mazhar » Tue Feb 15, 2011 6:04 am

It could be because hosted trial is configured on previous version of AbleCommerce. You can download latest ablecommerce package and can run it on your local computer in trial mode for testing.

toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

Re: 301 Redirects

Post by toolsup » Wed Feb 16, 2011 8:02 am

Seems like you would want the lastest version as a trial.
Then the trail user could see the latest and greatest. :)
Matt

toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

Re: 301 Redirects

Post by toolsup » Wed Feb 16, 2011 11:49 am

Alright, I am now running a current version of the demo store online.
I don't think the 301 redirects would be practical because we have 11,000-12,000 products that we would be moving.

It I put our current URL in the "custom url field" when the product is put in would that work?
Matt

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: 301 Redirects

Post by mazhar » Thu Feb 17, 2011 4:15 am

Yeah it will work. You can set any custom URL you want. You may need to enable custom extensions support depending upon your old page extension is other then *.aspx. You will find enable custom extensions setting under Configure -> SEO -> Settings page. BTW have a look at Dynamic Redirects option under SEO section. This allows you to define regular expressions to map URLs.

toolsup
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Sun Feb 27, 2005 1:18 pm

Re: 301 Redirects

Post by toolsup » Thu Feb 17, 2011 4:18 am

Great, I think the custom url will do the trick.
Matt

Post Reply