Re: [PHP] Re: what do i put in .htaccesss to achieve this

2002-04-16 Thread olinux
check this out - works like a charm http://www.phpbuilder.com/columns/tim2526.php3 Pop this in your root htaccess ForceType application/x-httpd-php3 Create file "users" (no extension) In the users file explode() $REQUEST_URI or $PATH_INFO to get your variables for the script. olinux

[PHP] Re: what do i put in .htaccesss to achieve this

2002-04-16 Thread Uchendu Nwachukwu
Try this: RewriteEngine On Options +FollowSymlinks RewriteBase / RewriteCond %{HTTP_HOST} whatever.yoursite.com RewriteCond %{REQUEST_URI} !path/to/desination/folder/ RewriteRule ^(.*)$ path/to/destination/folder/$1 [L] That should do it. -- Uchendu Nwachukwu newsreply AT unndunn DOT com - www.