Richiedude
04-30-2007, 04:56 PM
Ok so I got FP Exnternsions to work w/adding in a mod_rewrite to my HTaccess file to force www by:
adding Options +FollowSymlinks after the FP stuff in the htacces and
by doing the same to the htacess files in these folders:
_vti_bin/
and in that folder:
_vti_adm
_vti_aut
Again - in each of those 3 folders I modifed the htaccess to have
Options +FollowSymlinks
WORKS LIKE A CHARM!!!
NOW HOWEVER:
For a folder that I have installed wordpress blog (I uploaded via FTP and do not update or maintain using Frontpage) I tried changing the permalink structure which requires adding another modrewrite to the htaccess file:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
Whever I add this - FP extentions get broken.
Any idea why I can use this:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^uvtv\.info [nc]
RewriteRule (.*) http://www.uvtv.info/$1 [R=301,L]
</IfModule>
to force WWW - and that WORKS but the one for the Wordpress blog BREAK FP extensions??????
adding Options +FollowSymlinks after the FP stuff in the htacces and
by doing the same to the htacess files in these folders:
_vti_bin/
and in that folder:
_vti_adm
_vti_aut
Again - in each of those 3 folders I modifed the htaccess to have
Options +FollowSymlinks
WORKS LIKE A CHARM!!!
NOW HOWEVER:
For a folder that I have installed wordpress blog (I uploaded via FTP and do not update or maintain using Frontpage) I tried changing the permalink structure which requires adding another modrewrite to the htaccess file:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
Whever I add this - FP extentions get broken.
Any idea why I can use this:
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^uvtv\.info [nc]
RewriteRule (.*) http://www.uvtv.info/$1 [R=301,L]
</IfModule>
to force WWW - and that WORKS but the one for the Wordpress blog BREAK FP extensions??????