![]() |
RewriteEngine On
when writing htaccess, does it get fucked up if RewriteEngine On is there more than once?
I want to add some things to my htaccess, but wordpress takes up a big portion of it, so, I leave that part alone & edit the other parts that are there before the wordpress shit. Anyway, I need to add something that requires RewriteEngine On , but it's already on via the wordpress codes, so, do I put it there twice? so, basically, I have my error documents, that dont require any mod, then after starts the wordpress shit & it starts with; # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On so, if I am adding to this, I am putting it after the error document & before the # Begin wordpress would this be incorrect; RewriteEngine On blah blah blah bullshit here # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On or, do I put it there without RewriteEngine On, because it's on further down the page from wordpress?? Ok, I confused myself :1orglaugh |
or when several parts require rewrite on? Does it only need rewrite on once, or for each part?
like; RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC] RewriteRule \.(gif|jpg|js|css)$ - [F] RewriteEngine on # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} badsite\.com [NC] RewriteRule .* - [F] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On or should the RewriteEngine On only be there once? like this; RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC] RewriteRule \.(gif|jpg|js|css)$ - [F] # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} badsite\.com [NC] RewriteRule .* - [F] # BEGIN WordPress <IfModule mod_rewrite.c> |
You just need it once.
And what's that IfModule crap? You shouldn't need that unless it's in the apache server config. You either have mod_rewrite or you don't and you shouldn't need ot be checking it in your htaccess. And any time you finish a "section" with your RewriteRule, you should put a "(L)ast flag in there. RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC] RewriteRule \.(gif|jp?g|bmp|png|js|css)$ - [NC,F,L] RewriteCond %{HTTP_REFERER} badsite\.com [NC] RewriteRule .* - [F,L] |
so then this is wrong then?
Code:
<Files .htaccess> |
oh, the <IfModule mod_rewrite.c> is part of wordpress so that wordpress can write to the htaccess, at least that's what I think it is.
|
Truth be told, I don't think it matters whether or not the "on" is there more than once.. I've had that there by mistake myself before and it didn't cause any problems.
You could put all your stuff after the wordpress commands and that way it will already be on. The <IfModule></IfModule> is so that the commands within it are only executed if the mod_rewrite module is installed on apache. Since you know it is, it's not really required but won't hurt anything either. I don't see any glaring problems with what you have. It's not as "clean" as I'd try and make it but it should work fine. |
thank you for your help.
|
| All times are GMT -7. The time now is 01:16 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123