I've many Google Pages sites for my Google Apps domains. (i.e. : all www.<domain>.com use Google Pages)
So now, Google will be shut-down very soon, so 'ive migrated all the sites to GAE. I was only using Google Pages with .html, .js, .css file (not the creator). So it was easy to migrate it. Here is the steps to avoid a 404 error issue. 1 - In the Google App admin : * Select Google Pages service * Modify web site * Download the full site (there is an option now : http://googlesystem.blogspot.com/2009/04/google-page-creator-migration-info.html ) 2 - Create a GAE app : www-<domain> (for example) 3 - Unzip and upload the files and test it : www-<domain>.appspot.com 4 - In the Google App admin : * Change www.<domain>.com to the standard url : www.a.<domain>.com.googlepages.com * Then disable this service 5 - Add a new GAE service i.e : www-<domain> et choose the new alias : www.<domain>.com If you change the order (4 <-> 5) then after a while you will have a 404 error an you will have to remove the GAE app et re-add it again. I hope it can help Regards Here is my app.yaml , it works with the .zip from Google Pages ---------------------------------- application: your_app version: 1 runtime: python api_version: 1 default_expiration: "1d" handlers: - url: / static_files: index.html upload: index.html - url: /(.*) static_files: \1 upload: (.*) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
