[TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Hi list, is there a convenient way (an extension) to create 301 redirects from the TYPO3 backend? We relaunched a website which had another cms before and the website has some incoming deep-lins which do not work anymore. I'd like to define 301 redirects for each of these URLs. I could do it

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Steffen Ritter
Sebastian Gebhard schrieb: > Hi list, > > is there a convenient way (an extension) to create 301 redirects from > the TYPO3 backend? > > We relaunched a website which had another cms before and the website has > some incoming deep-lins which do not work anymore. > > I'd like to define 301 redi

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Mark Kuiphuis
Steffen Ritter wrote: > Sebastian Gebhard schrieb: >> Hi list, >> >> is there a convenient way (an extension) to create 301 redirects from >> the TYPO3 backend? >> >> We relaunched a website which had another cms before and the website >> has some incoming deep-lins which do not work anymore. >>

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Donatas Elvikis
hi, simply try URL: public/?act=latestnews Redirect to: latest-news at least this works for me. Best wishes, Donatas Elvikis Mark Kuiphuis schrieb: Steffen Ritter wrote: Sebastian Gebhard schrieb: Hi list, is there a convenient way (an extension) to create 301 redirects from the TYPO3 ba

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Benjamin Mack
Hey Mark, I always had trouble with that page, as I didn't know where to use absolute URLs and where to remove the domain name. Here is a working example: In the "Url" field I have: community/beta.html In the "Destination" field I have: http://www.domain.com/home.html Maybe this helps!

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! Sebastian Gebhard wrote: > is there a convenient way (an extension) to create 301 redirects from > the TYPO3 backend? Don't do this! This is very bad from performance view. Do it through the Apache configuration with mod_rewrite. It will be much faster. -- Dmitry Dulepov TYPO3 core team ht

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Dmitry Dulepov schrieb: > Hi! > > Sebastian Gebhard wrote: >> is there a convenient way (an extension) to create 301 redirects from >> the TYPO3 backend? > > Don't do this! This is very bad from performance view. Do it through the > Apache configuration with mod_rewrite. It will be much faster.

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Benjamin Mack schrieb: > Hey Mark, > > I always had trouble with that page, as I didn't know where to use > absolute URLs and where to remove the domain name. Here is a working > example: > > In the "Url" field I have: community/beta.html > In the "Destination" field I have: http://www.

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! Sebastian Gebhard wrote: > Why did you build this feture into realurl? I didn't, Kasper did. I never use this feature because it is highly inefficient. Just imagine how it goes: - mod_rewrite redirects (my favorite): - Apache gets a request - mod_rewrite does a redirect to

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Sebastian Gebhard
Dmitry Dulepov schrieb: > Hi! > > Sebastian Gebhard wrote: >> Why did you build this feture into realurl? > > I didn't, Kasper did. I never use this feature because it is highly > inefficient. Just imagine how it goes: > > - mod_rewrite redirects (my favorite): > - Apache gets a request

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Mark Kuiphuis
Sebastian Gebhard wrote: > Dmitry Dulepov schrieb: >> Hi! >> >> Sebastian Gebhard wrote: >>> Why did you build this feture into realurl? >> >> I didn't, Kasper did. I never use this feature because it is highly >> inefficient. Just imagine how it goes: >> >> - mod_rewrite redirects (my favorite):

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! Mark Kuiphuis wrote: > I tried to add the following line to my .htaccess: (follow-up on the > redirects in RealURL) > > Redirect 301 /public/?act=latestnews /latest-news/ > > Unfortunately this doesn't work and it still shows me the 404 page. I usually use a RewriteRule. For example: Rewri

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Oliver Rowlands
Hi Sebastien, I couldn't agree more with Dmitry: handling the redirections at the Apache level is far more efficient. I wrote a small tutorial on how to set this up which you might find useful: http://lists.netfielders.de/pipermail/typo3-english/2007-May/039509.html Best regards, Oliver Dmit

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread ries van Twisk
On Mar 24, 2009, at 5:55 AM, Dmitry Dulepov wrote: > Hi! > > Sebastian Gebhard wrote: >> is there a convenient way (an extension) to create 301 redirects from >> the TYPO3 backend? > > Don't do this! This is very bad from performance view. Do it through > the Apache configuration with mod_rewri

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Mark Kuiphuis
Dmitry Dulepov wrote: > Hi! > > Mark Kuiphuis wrote: >> I tried to add the following line to my .htaccess: (follow-up on the >> redirects in RealURL) >> >> Redirect 301 /public/?act=latestnews /latest-news/ >> >> Unfortunately this doesn't work and it still shows me the 404 page. > > I usually us

Re: [TYPO3-english] Extension for 301 redirects

2009-03-24 Thread Dmitry Dulepov
Hi! ries van Twisk wrote: > How can you say that without even knowing the number of redirects per > day or per second needed? Think! What is faster: 1. mod_rewrite redirect or 2. mod_rewrite redirect (to index.php) + PHP + TYPO3 + RealURL redirect > The question was if it was possible, not if

Re: [TYPO3-english] Extension for 301 redirects

2009-03-25 Thread Mark Kuiphuis
Mark Kuiphuis wrote: > Dmitry Dulepov wrote: >> Hi! >> >> Mark Kuiphuis wrote: >>> I tried to add the following line to my .htaccess: (follow-up on the >>> redirects in RealURL) >>> >>> Redirect 301 /public/?act=latestnews /latest-news/ >>> >>> Unfortunately this doesn't work and it still shows me