Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
Redirect to section
Hello,
my client has no homepage at the moment, so he wants to show some section on page load. Very newbie question, but I can’t think to something immediate at the moment…
Thanks
Offline
Re: Redirect to section
301 redirect inside .htaccess?
redirect 301 /index.html http://www.example.com/section
Offline
Re: Redirect to section
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+) - [PT,L]
RewriteRule ^(.*) index.php
redirect 301 /index.php http://www.site.it/section/
this is my .htaccess now, tried to use index.html, but doesn’t work. Index.php doesn’t work completely: redirects to proper section, but txp cannot generate the page, due to some error…
Offline
Re: Redirect to section
Have you tried putting the 301 line at the top? Also: What error?
Offline
#5 2011-04-01 03:50:28
- GugUser
- Member
- From: Quito (Ecuador)
- Registered: 2007-12-16
- Posts: 1,477
Re: Redirect to section
In redirect you need only the slash for default:
redirect 301 / http://www.site.it/section/
Offline
Pages: 1