Oli Studholme wrote:
> I just can’t seem to get redirects going in
> Radiant’s .htaccess. Can someone enlighten me?
Could it be that the Apache VirtualHost for the site isn't allowing
.htaccess overrides? Your httpd.conf file should have a VirtualHost
looking something like this:
<VirtualHost *:80>
ServerName PROJECT.com
DocumentRoot /Users/dave/Sites/PROJECT
<Directory "/Users/dave/Sites/PROJECT.com">
### ensure mod-rewrite by turning off MultiViews and
### allowing .htaccess override to set rewrite rules
Options FollowSymLinks -Indexes -MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
- Dave
--
Posted via http://www.ruby-forum.com/.
_______________________________________________
Radiant mailing list
Post: [email protected]
Search: http://radiantcms.org/mailing-list/search/
Site: http://lists.radiantcms.org/mailman/listinfo/radiant