Author |
|
flatcircle
Joined: 27 Jun 2006 Posts: 79
|
Posted: Tue 08 Sep '09 14:20 Post subject: Mod_rewrite - How to exclude a file from being rewritten |
|
|
Hello
I'm using following rules in my htaccess file. (default Joomla rules)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
How can I exclude my main (root) index.htm file from this rewriting?
I don't want to change the behaviour of the existing rules, ONLY leave /index.htm as it is.
Is this possible?
Regards.
FC. |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Tue 08 Sep '09 17:26 Post subject: |
|
|
well, this says NOT to act on /index.php
RewriteCond %{REQUEST_URI} !^/index.php
So why not add to the mess
RewriteCond %{REQUEST_URI} !^/index.htm |
|
Back to top |
|
flatcircle
Joined: 27 Jun 2006 Posts: 79
|
Posted: Wed 09 Sep '09 8:32 Post subject: |
|
|
Already tried this but no success. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Wed 09 Sep '09 10:19 Post subject: |
|
|
Code: |
RewriteRule ^/(dir_name|file_name\.extension|and_so_on) - [L]
|
(this is for use with httpd.conf)
For htaccess, use:
Code: |
RewriteRule ^(dir_name|file_name\.extension|and_so_on) - [L]
|
|
|
Back to top |
|
flatcircle
Joined: 27 Jun 2006 Posts: 79
|
Posted: Fri 11 Sep '09 8:42 Post subject: |
|
|
Thanks.
Working now.
(Problem was a (very) buggy SEF-component that caused this trouble.) |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Fri 11 Sep '09 23:13 Post subject: |
|
|
I should know better than to guess and leaves these kinds of questions to the config king James! |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Sat 12 Sep '09 18:33 Post subject: |
|
|
Config maybe. Rewrite not, but I'm good at googling |
|
Back to top |
|