I'm not an expert on this, but this .htaccess file works for me. I have it in my root directory. Additional lines are in it for other directories--but this is for my test installation. Haven't tested things for stamps, really.
Note the line that allows me to access imgs in the files directory. You may need that. Without it, any call to BoltWire for an image in the files directory will gets re-written to a call to index.php?p=img.gif) and that call will overwrite your session variables that confirm your form's validation. I've really tightened that up. Better security, and it keeps the session variable from getting excessively large. Still, maybe it is tightened up too much. I didn't think urls in the css file affect things, but I may already have full urls there. Relative links definitely won't work because the dir "test" is not in the link so it gets rewritten to index.php. It all makes sense to me at last... Cheers, Dan P.S. It probably worked before because the session handling was not deleting all the form validation values it should have. RewriteEngine On Options SymLinksIfOwnerMatch RewriteRule ^test/(config|files)/.*$ - [L] RewriteRule ^test/(.*)$ test/index.php?p=$1 [QSA,L,NC] On Mon, Mar 17, 2014 at 2:34 AM, mz <[email protected]> wrote: > Thank you! > > I made a new vanilla installation but could not get cleanURLs to work with > the login or register form. > It did not help to delete icon link in the skin files. > > Maybe you could post your working htaccess? Or did you change anything for > the index.php? > > I use this one (for years) that stopped working with 4.07 > > Options -Indexes > Options +FollowSymlinks > RewriteEngine On > RewriteBase / > # Rewriting index.php queries > RewriteRule ^(.*)$ myfield/index.php?p=$1 [QSA,L] > > Index.php is > > $cleanURL='http://www.example.com/'; > $fieldURL='http://www.example.com/myfield/'; > > Greetings, Martin > > -- > You received this message because you are subscribed to the Google Groups > "BoltWire" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/boltwire. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "BoltWire" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/boltwire. For more options, visit https://groups.google.com/d/optout.
