Groundhog Day... :)

First, I have little knowledge of .htaccess so be careful.

I see two things:

1) In your second .htaccess code a plus sign might be missing: Options
+FollowSymlinks

This could overwrite all other options that have been set before.

2) I don't have "field" in the last line: RewriteRule ^(.*)$ index.php?
p=$1 [L]

Are you sure that "field" is not inserted twice?

The only .htaccess that has worked for me is this:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^boltwire.com
RewriteRule (.*) http://www.boltwire.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?p=$1 [L]

Good luck!

Markus

On Jan 16, 9:22 pm, WadeSmart <[email protected]> wrote:
> I really hate to ask this question when there are 70 threads here
> about this.
>
> I have this error:
> [Sat Jan 16 13:46:31 2010]
> [error]
> [client 127.0.0.1]
> File does not exist: /data/smart/www/boltwire/field/main,
> referer:http://smart/boltwire/field/
>
> .htaccess file located in /field
> Options +FollowSymlinks
> RewriteEngine on
> RewriteCond %{SCRIPT_FILENAME} !-f
> RewriteRule ^(.*) boltwire/field/index.php?p=$1
>
> I made a change, not sure what, and caused some type of crazy loop:
> [Sat Jan 16 14:17:18 2010]
> [error]
> [client 127.0.0.1]
> Request exceeded the limit of 10 internal redirects due to probable
> configuration error. Use 'LimitInternalRecursion' to increase the
> limit if necessary.
>  referer:http://smart/boltwire/
>
> I changed to this .htaccess code:
> RewriteEngine On
> Options FollowSymlinks
> RewriteBase /
> RewriteCond % !/field/files/(.*)\.
> RewriteCond % !/boltwire/farm/img/(.*)\.
> RewriteRule ^(.*)$ field/index.php?p=$1 [QSA,L]
>
> which now produces this error:
> [Sat Jan 16 14:19:18 2010]
> [error]
> [client 127.0.0.1]
> File does not exist: /data/smart/www/field,
> referer:http://smart/boltwire/
>
> Im running in circles now so I would appreciate some help.
> Thanks
>
> Wade
-- 
You received this message because you are subscribed to the Google Groups 
"BoltWire" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/boltwire?hl=en.


Reply via email to