vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   .htaccess redirect (https://vborg.vbsupport.ru/showthread.php?t=239478)

jscieza 03-31-2010 09:37 AM

.htaccess redirect
 
Hello,

I want to make a redirect like this through .htaccess:

from: http://www.forosperu.net/forumdisplay.php?f=282
to: http://www.forosperu.net/forumdisplay.php?f=323

I have just tried placing something like this on my .htaccess with no luck :(

Code:

Redirect 301 /forumdisplay.php?f=282 http://www.forosperu.net/forumdisplay.php?f=323
It's possible to do it using .htaccess?

Thank you,
Jonathan

jscieza 04-01-2010 02:00 PM

Any idea? :confused:

jdaw 04-01-2010 08:04 PM

Try adding the "RewriteEngine on" just before the redirect.
I put one before each set of rules.

Code:

RewriteEngine on
Redirect 301 /forumdisplay.php?f=282 http://www.forosperu.net/forumdisplay.php?f=323


jscieza 04-02-2010 01:50 AM

Thanks but "RewriteEngine on" is present at the begin of .htaccess

Anyone here knows a possible workaround for this?

kNeeLy 04-02-2010 12:57 PM

just a guess here...but maybe you need the http:// in the first link in the rewrite. It looks like you have it in the second part, but not the first.

jdaw 04-03-2010 06:20 PM

I am VERY well aware that the RewriteEngine On command is at the beginning. :eek:

What I am suggesting you try, based on me having he same issue, is putting the RewriteEngine On command before every different set of rules.

The first set of rules here will redirect yoursite.com to www.yoursite.com.
The second set will redirect all yoursite.com/index requests to yoursite.com/
Both of these will help you avoid duplicate content penalties.
Code:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]

RewriteEngine on
# index.php to /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php\ HTTP/
RewriteRule ^(.*)index\.php$ /$1 [R=301,L]

RewriteEngine on
Redirect 301 /folder http://www.yoursite.com/folder
Redirect 301 /folder http://www.yoursite.com/folder



All times are GMT. The time now is 08:01 AM.

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.01010 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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