PDA

View Full Version : Conflict - Please help


imported_infitech
04-07-2006, 04:26 AM
Is there a conflict here? Does this look right?
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*).html(.*)$ $1.php?$2=$3&$4=$5&$6=$7&$8=$9&$10=$11&$12=$13$14
RewriteRule ^(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*).html(.*)$ $1.php?$2=$3&$4=$5&$6=$7&$8=$9&$10=$11$12
RewriteRule ^(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*).html(.*)$ $1.php?$2=$3&$4=$5&$6=$7&$8=$9$10
RewriteRule ^(.*)-(.*)_(.*)-(.*)_(.*)-(.*)_(.*).html(.*)$ $1.php?$2=$3&$4=$5&$6=$7$8
RewriteRule ^(.*)-(.*)_(.*)-(.*)_(.*).html(.*)$ $1.php?$2=$3&$4=$5$6
RewriteRule ^(.*)-(.*)_(.*).html(.*)$ $1.php?$2=$3$4
RewriteRule ^(.*).html$ $1.php
RewriteRule ^(sitemap.*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteRule ^$ index.php
RewriteRule (^[-_A-Za-z0-9\ ]*$) member.php?&username=$1

Xenon
04-07-2006, 09:41 AM
hmm, it looks right, but very complicated :D

imported_infitech
04-07-2006, 10:22 AM
It has my forums on a constant redirect and the custom user profilel url such as http://www.infitechdesign.com/forums/Stev'O do no twork

djtheropy
04-14-2006, 04:13 PM
remove parts line by line untill u find the line that is causing the errors, then u know what bit is conflicting

evofile
04-20-2006, 06:13 PM
change member.php in the bottom to
http://www.yourdomain.com/forum/member.php

imported_infitech
04-20-2006, 09:04 PM
change member.php in the bottom to
http://www.yourdomain/forum/member.php
You're saying this will fix my whole problem?

evofile
04-21-2006, 02:41 PM
nope but this is an error that you should fix especially if you installed vbadvanced

P.S. LOL u live in queens, me too

imported_infitech
10-31-2006, 08:37 AM
nope but this is an error that you should fix especially if you installed vbadvanced

P.S. LOL u live in queens, me too
Queens Village baby!

nico_swd
10-31-2006, 09:19 AM
Try this

RewriteRule ^([-_A-Za-z0-9\ ]*)$ member.php?&username=$1


instead of this

RewriteRule (^[-_A-Za-z0-9\ ]*$) member.php?&username=$1


EDIT: Are you aware of the & sign after the question mark?

imported_infitech
10-31-2006, 04:38 PM
thank u...
that did the trick