vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   htaccess redirect question (https://vborg.vbsupport.ru/showthread.php?t=237968)

mhackl 03-10-2010 06:38 PM

htaccess redirect question
 
I have moved my forum from a "/forums/" sub-directory into the sites root directory. I have included the following code in my .htaccess file to redirect search engine links to the appropriate page in the sites new location and this is working great except I need to make an exception for the "/forums/images/" directory. This is where I need help.

Current code to redirect:
Code:

RewriteRule ^forums(.*)$ http://www.domain.com/$1 [L,R=301]
How do I add a condition or exception to this to allow the "/forums/images/" to not be redirected?

borbole 03-10-2010 07:24 PM

Quote:

Originally Posted by mhackl (Post 2001079)
I have moved my forum from a "/forums/" sub-directory into the sites root directory. I have included the following code in my .htaccess file to redirect search engine links to the appropriate page in the sites new location and this is working great except I need to make an exception for the "/forums/images/" directory. This is where I need help.

Current code to redirect:
Code:

RewriteRule ^forums(.*)$ http://www.domain.com/$1 [L,R=301]
How do I add a condition or exception to this to allow the "/forums/images/" to not be redirected?


Try add a RewriteCond with a negative pattern that excludes the images folder.

Something like this for ex:

Code:

RewriteCond %{REQUEST_URI} !^/forums/images/

mhackl 03-10-2010 07:40 PM

Found the answer to my own question.
Code:

RewriteCond %{REQUEST_URI} !(images)
RewriteRule ^forums(.*)$ http://www.domain.com/$1 [L,R=301]

--------------- Added [DATE]1268257272[/DATE] at [TIME]1268257272[/TIME] ---------------

Quote:

Originally Posted by borbole (Post 2001115)
Try add a RewriteCond with a negative pattern that excludes the images folder.

Something like this for ex:

Code:

RewriteCond %{REQUEST_URI} !^/forums/images/


Thank you! I responded to my own post before I saw that you had responded. Thank you for your response.

borbole 03-10-2010 07:50 PM

No problem.


All times are GMT. The time now is 11:24 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01167 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete