On Wed, Mar 06, 2013 at 01:26:42PM -0500, Ronnie Ghose wrote: > .... we can just put a javascript redirect / html redirect in the actual > source > code ...i'm pretty sure we can use some sort of engine or script to do this > for > us :/
That's very ugly, breaks search engines, and forces 2 HTTP accesses instead of one. It is indeed a stop-gap solution, but it is nothing more than that. Basicaly, I want that: http://scikit-learn.org http://scikit-learn.org/stable http://scikit-learn.org/0.12 http://scikit-learn.org/index.html http://scikit-learn.org/stable/index.html http://scikit-learn.org/0.12/index.html All point to the same file (yes, the same file) on the server, as well as for (where '*' is a multi-directory glob): http://scikit-learn.org/stable/* http://scikit-learn.org/0.12/* This is for useability reasons, but also for search-engine optimization reason (we want users to land as much as possible on the 'stable' pages when googling). If anyone knows how to do this with github, I am all hears. G ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_mar _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
