Search the Community
Showing results for tags '301 redirect'.
-
Prestashop 1.6.0.9 Multistore. Currently have multiple stores enabled within prestashop, each with their own domain. Stores migrated from different shopping cart system into prestashop system. I have all urls used in previous system and would like to setup 301 redirects to each category and product page so Google and others will update their index and ensure no links are lost. I understand this can be done via the .htaccess file, however when I reviewed it looked more complicated than usual since rewrite for .php and others are activated. I tried to include a few 301 redirects within the .htaccess file however, after upload the entire site was internal server error 500. I did something wrong. 1) Is there a simple formula to follow (old url) to new urls within the prestashop .htaccess file? 2) Is there a module for prestashop that can handle previous system urls and redirect to certain categories & products within prestashop? I look forward to anyone providing guidance. Thanks.
- 32 replies
-
- edit .htaccess file
- 301 redirect configuration
- (and 6 more)
-
Good day, please can anyone help me with setting up the 301 redirect module. I need to completely redirect the old site to the new one. It doesn't work for me and I don't know where the problem is. Module support does not respond to me ... Thank you in the attachment for my settings
-
Hallo allemaal mijjn naam is martin en heb een vraag over het instellen van een 301 redirect voor mijn website En zou het echt heel fijn vinden als iemand mij stapsgewijs hier mee zou willen helpen dar ik zelf geen of zeer weinig ervaaring mee heb graag goede uitleg van waar ik op moet letten welke instelling ik moet verranderen als ik deze istelling wil doorvoeren goed hier mijn probleem eerst mar ik heb een website laten we zeggen die er zo uit ziet www.mysite.com/order alza ik op de link druk kom ik netjes op de pagina waar ik moet zijn Maar als ik hem zo typ www.mysite.com/order/ kom ik op een 404 error page van mijn site dus zou ik het graag willen veranderen dat als ik dit typ www.mysite.com/order/ gewoon hier uit kwam www.mysite.com/order un heb ik wel wat gelezen hier en dar mar kom er niet echt uit Dus hulp grvraagd graag zou ik het op prijs stellen dat het in elk detail Woord voor woord uitgelegd dus stap voor stap zodat ik geen fouten maak de versie die ik gebruik is prestashop 1.5.6.2 teven load ik hier mijn htaccess file op die in de root van mijn server staat alvast hartelijk bedankt Martin .htaccess
-
Hola necesito ayuda para hacer un 301 redirect tengo una pagina por ejemplo www.mysite.com/order que sale que tiene un error por ejemplo www.mysite.com/order si estas bien pero si alquin pone www.mysite.com/order/ llega a mi pagina 404 de error Como y que tengo que hacer que www.mysite.com/order/ llega aquí www.mysite.com/order Si hay alquin que me me explicaar los pasos que tengo que hacer para todo lo funciona bien donde tengo que poner el código en htaccess file para que no se borra si hay que hacer algo prestashop back office estoy usando prestahop versión 1.5.6.2 htaccess estas aquí por la pagina mira lo y si pude ayuda me .htaccess
-
Advanced Pack 5 - zmiana linków a SEO
dawid.noculak posted a question in Wsparcie i pomoc użytkowników
Hej, wystawiamy w sklepie na Prestashop zestawy produktowe na nowym module Advanced Pack. Wobec tego zmienia się ich link. Zatem ustawiamy przekierowanie 301 ze starego zestawu do nowego. Problem w tym, że po wystawieniu zestawów "na nowo" ich linki wypadają z indeksu. Sprawdzałem przy pomocy "site:" i nowe linki są zaindeksowane, niemniej ich pozycje są słabe Załączam screen aby pokazać dokładniej o co chodzi. Czy spotkaliście się z podobnymi case'ami i po jakim czasie linki "wróciły" na swoją pozycję? Jakie inne rozwiązanie można zastosować przy tym module aby spadków nie było?-
- seo redirect
- 301 redirect
-
(and 2 more)
Tagged with:
-
I'm confused about adding my multi language site (2 languages) to the Google Webmasters. For instance: 1) http://www.mysite.com/ 2) http://mysite.com/ 3) http://www.mysite.com/en/ 4) http://www.mysite.com/fr/ - Do I have to add these 4 addresses to the Google Webmasters (Search Console)? - Do I have to add my sitemap .xml files for each of them? Or only for main address (http://www.mysite.com/) - Do I have to use 301 redirections? (Or enabling Canonical URLs is enough?) - Do I have to use "hreflang" for each language and regional URLs? - If default language is FR, entering "http://www.mysite.com/" and "http://www.mysite.com/fr/" goes the same pages. Are we going to encounter duplicate content issues? Thanks in advance
- 1 reply
-
- Webmasters
- Google Webmasters
- (and 5 more)
-
I am planning to change the product page url structure of my website on PS1.6 Currently i am using route to product as {categories:/}{id}-{rewrite}.html which creates url as : example.com/category/sub-category/product-name.html I wish to change this to {id}-{rewrite}.html which will create url as : example.com/product-name.html As the category & sub-category & product name have some common words the urls are not good for SEO. Now beacuse my product pages are already indexed on google with the existing route HOW can i redirect my existing URL structure to the new URL structure once I change the product route to avoid 404???? I found a solution that suggest the following Using a RedirectMatch directive from mod_alias in your .htaccess file should do the trick: RedirectMatch permanent /[^/]+/([0-9]+)-(.*)-([0-9]+)\.html$ /$2-$1-$3 This pulls out the matching parts of your old URLs and redirects them to the new format. But I am not sure how to implement it in .htaccess, where exactly this line needs to be added and do I need to add some more syntax as well..????
-
- 301 redirect
- url structure change
- (and 4 more)
-
Hi, I am (re)posting here because i didn't get any answer on the French speaking forum : I am developing a multistore (7 stores). It's a revision of existing sites. I would like to have 301 redirections URL by URL when the new stores are online in order not to lose referencing. I think that the easiest way to do this is to add redirections in the .htaccess file. But if my primary store is "www.store1.com", the folder where my second store might be "www.store1.com/store2/" will be virtually generated by Prestashop, so not physically. So I don't have "store2" folder on the server to put an .htaccess file where there would be : RedirectPermanent /url1.html http://www.store1/store2/new_url1.com RedirectPermanent /url2.html http://www.store1/store2/new_url2.com ... I tried two ways, the first, creating the folder "store2" physically et put in it the previous .htaccess file : it doesn't work (404 error). I also tried to put this in the .htaccess file of the first store : RedirectPermanent /store2/url1.html http://www.store1/store2/new_url1.com RedirectPermanent /store2/url2.html http://www.store1/store2/new_url2.com ... 404 error too, can someone tell me if i miss something or if this solution is not appropriate? Thanks for your help,
-
Is there any possibility that when I change the url of a product, a 301 redirect is automatically created for the new url. Someting like the Wordpress do. I've been changing the URL of products in various languages to the languages in question, in order to optimize the seo. example: /pt/11-carregadores-hp = /pt/11-carregadores-hp /en/11-carregadores-hp -> /en/11-chargers-hp /fr/11-carregadores-hp -> /fr/11-chargeurs-hp /es/11-carregadores-hp -> /es/11-cargadores-hp But predictably now have a lot of errors in the Google indexing.
-
I would like these issues resolved by April 8th. Shipping- Canadian orders are designating the wrong carrier. It doesn't apply the Canadian carrier, it applies the US Carrier. This is incorrect. It SHOULD apply the Canadian carrier. See attached PDF Some CMS Pages will not apply the Friendly URL. For Example: http://198.46.91.101/~deepwo6/index.php?id_cms=31&controller=cms The Product Pages will apply the Friendly URL Left Hand "Link Block" and "CMS Block" are not showing on interior Pages. 301 Redirects are needed to redirect the pages from our current non-prestashop site (www.deepwoodsventures.com) to our new Prestashop (http://198.46.91.101/~deepwo6/) After the CMS Issue is corrected I can provide a spreadsheet with the link redirects. I just don't know how to write the HTAaccess file. Thanks. Paul Jones canadian shipping.pdf
-
Hi, I'm having no luck getting any redirects to work in a new Prestashop 1.5.4 site that has just gone live. I have tried many different permutations, but none of them work. I have tried placing them outside of Prestashop's ~~start~~ and ~~end~~ points in .htaccess, and out of desperation have also tried placing them inside it, even though we are not supposed to! Nothing is working. I have tried this: Also this: And someone even suggested this, even though I had not encountered the syntax before: None of them work - I am always directed to Prestashop's "Page not available - We're sorry, but the Web address you entered is no longer available" page (which I'm assuming is its default 404 page). So how can we accomplish a standard 301 redirect in Prestashop? Thanks
-
Hi, For our website, we have created landing page module with seo friendly urls. What we have found is this pages are indexed fast and already ranking well as compared to our category pages on which we put in a lot of SEO effort. Somewhere we felt it is the SEO friendly URL format that is affecting the ranking of these category pages. Our Landing Page url format - www.sitename.com/c/landing-page Categroy Page url format - www.sitename.com/31-category-name After comparing the url structure of our competitors, we felt the need to remove the category id or change the format. So we plan to execute the below - www.sitename.com/category/31/category-name Somewhere we feel that 31-category-name is considered incorrectly, affecting the SEO. Though friendly URL is just a part of many things to get URL ranked, but as compared to our landing page success, we want to give a try. I am bit confused whether to go for 301 redirect or canonical URL. Also want to know how to begin with. We have around 100 categories and so do not want to take risk with ranking of the pages. Thanks & Regards, Vineshkumar K
-
Hi All I deleted all languages apart from English but now I have lots of 404 errors for all the old en/es/fr pages etc. How can I redirect these or stop search engines giving 404 errors on them? Is it possible to add a 301 to home page for all of them? I have added disallow all links in my robots file is this enough? Many Thanks Gary
-
Maybe a silly question.... What to do with old content when using 301 redirects? mydomain.com/abc.html -----> mydomain.com/def.html Do you still have to host the old content? I would say yes from a SEO perspective (old content has rankings and need to give juice to new content), but no from a normal perspective (saving server space + permanent redirect). Need some good response, Thanks
- 3 replies
-
- 301 redirect
- redirecting
-
(and 2 more)
Tagged with:
-
Our old domain is made in plain html. Now we want to redirect old URL's to new Presta URL's. So let's take these exemples: www.ourdomain.com/tennis-shoe-abc.html redirecting to www.ourdomain.com/tennis-shoe-blue.html and www.ourdomain.com/tennis-shoes.html to category tennis shoes www.ourdomain.com/tennis-shoes How to make these redirects??
- 5 replies
-
- redirecting
- 301 redirect
-
(and 1 more)
Tagged with:
-
I am having an issue with redirecting 2 products only (followed a stupid path for my server upgrade). Here is what I have done so far: added this to .htaccess: RewriteRule ^/2-ib-french-ab-initio-2013-skeleton-course$ /28-ib-dp-french-ab-initio-vle-course-template.html [R=301,L] [*]Above rule is after RewriteEngine on but before all other Prestashop rules [*]Checked that Rewrite_mod works -- OK, it does [*]Checked my error_log in Apache -- [Wed Jul 04 08:59:56 2012] [error] [client xxx.xxx.xxxx.xxx] File does not exist: /var/www/en --Of course it doesn't, that's why I'm trying to redirect! [*]Tried all combinations of QSA, redirect, etc. -- nothing works [*]Swore at my computer repeatedly I'd really appreciate any help/hint as I am running out of ideas Cheers, Fred