Activity Stream
48,167 MEMBERS
61032 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 4 of 4
  1.     
    #1
    Member
    Website's:
    dhi-forumerz.com watchanimes.org c0ver.me

    Default Redirection problem

    Hello,


    I have DLE installed on the main root..

    And forum installed on Folder "http://rapidshare-links.org/forums/"

    So the trouble is that after i activate the seo.. Its some how mixing with the current script..

    Please see for your self..

    http://rapidshare-links.org/forums/your-first-forum-f2/

    Updated the .htaccess in the folder forums with the phpbb-seo one.. added one more line..

    .htaccess in /forums

    PHP Code: 
        # Lines That should already be in your .htacess
        
    <Files "config.php">
        
    Order Allow,Deny
        Deny from All
        
    </Files>
        <
    Files "common.php">
        
    Order Allow,Deny
        Deny from All
        
    </Files>

        
    # You may need to un-comment the following lines
        # Options +FollowSymlinks
        # To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
        # Options -MultiViews
        # REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
        
    RewriteEngine On
        
    # Uncomment the statement below if you want to make use of
        # HTTP authentication and it does not already work.
        # This could be required if you are for example using PHP via Apache CGI.
        # RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
        # REWRITE BASE
        
    RewriteBase /
        
    # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
        # RewriteCond %{HTTP_HOST} !^rapidshare-links\.org$ [NC]
        # RewriteRule ^(.*)$ http://rapidshare-links.org/$1 [QSA,L,R=301]

        # DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
        
    RewriteCond %{REQUEST_FILENAME} -f
        RewriteCond 
    %{REQUEST_FILENAME} -d
        RewriteRule 
    . - [L]
        
    #####################################################
        # PHPBB SEO REWRITE RULES ALL MODES
        #####################################################
        # AUTHOR : dcz www.phpbb-seo.com
        # STARTED : 01/2006
        #################################
        # FORUMS PAGES
        ###############
        # FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
        # RewriteRule ^forums/forum\.html$ /forums/index.php [QSA,L,NC]
        # FORUM ALL MODES
        
    RewriteRule ^forums/(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /forums/viewforum.php?f=$2&start=$[QSA,L,NC]
        
    # TOPIC WITH VIRTUAL FOLDER ALL MODES
         
    RewriteRule  ^forums/(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$  /forums/viewtopic.php?f=$2&t=$4&start=$[QSA,L,NC]
        
    # TOPIC WITHOUT FORUM ID & DELIM ALL MODES
         
    RewriteRule  ^forums/([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$  /forums/viewtopic.php?forum_uri=$1&t=$3&start=$[QSA,L,NC]
        
    # PHPBB FILES ALL MODES
        
    RewriteRule ^forums/resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /forums/download/file.php?id=$2&t=$[QSA,L,NC]
        
    # PROFILES ALL MODES WITH ID
        
    RewriteRule ^forums/(member|[a-z0-9_-]*-u)([0-9]+)\.html$ /forums/memberlist.php?mode=viewprofile&u=$[QSA,L,NC]
        
    # USER MESSAGES ALL MODES WITH ID
         
    RewriteRule  ^forums/(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$  /forums/search.php?author_id=$2&sr=$3&start=$[QSA,L,NC]
        
    # GROUPS ALL MODES
         
    RewriteRule ^forums/(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$  /forums/memberlist.php?mode=group&g=$2&start=$[QSA,L,NC]
        
    # POST
        
    RewriteRule ^forums/post([0-9]+)\.html$ /forums/*******************$1 [QSA,L,NC]
        # ACTIVE TOPICS
         RewriteRule ^forums/active-topics(-([0-9]+))?\.html$  /forums/search.php?search_id=active_topics&start=$2&sr=topics  [QSA,L,NC]
        # UNANSWERED TOPICS
        RewriteRule  ^forums/unanswered(-([0-9]+))?\.html$  /forums/search.php?search_id=unanswered&start=$2&sr=topics  [QSA,L,NC]
        # NEW POSTS
        RewriteRule ^forums/newposts(-([0-9]+))?\.html$ /forums/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
        # UNREAD POSTS
        RewriteRule ^forums/unreadposts(-([0-9]+))?\.html$ /forums/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
        # THE TEAM
        RewriteRule ^forums/the-team\.html$ /forums/memberlist.php?mode=leaders [QSA,L,NC]
        # HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES

        #####################################################
        # GYM Sitemaps & RSS
        # Global channels
         RewriteRule ^forums/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?/?$  /forums/gymrss.php?channels&$2&$4&$6 [QSA,L,NC]
        # HTML Global news & maps
        RewriteRule ^forums/(news|maps)/?(page([0-9]+)\.html)?$ /forums/map.php?$1&start=$3 [QSA,L,NC]
        # END GYM Sitemaps & RSS
        #####################################################

        # FORUM WITHOUT ID & DELIM ALL MODES
        # THESE THREE LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^forums/([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /forums/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
        # FIX RELATIVE PATHS : FILES
        RewriteRule ^forums/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /forums/$1 [QSA,L,NC,R=301]
        # FIX RELATIVE PATHS : IMAGES
        RewriteRule ^forums/.+/(styles/.*|images/.*)/$ /forums/$1 [QSA,L,NC,R=301]
        # END PHPBB PAGES
        #####################################################

        #####################################################
        # GYM Sitemaps & RSS
        # HTML Module additional modes
         RewriteRule  ^forums/(news|maps)/([a-z0-9_-]+)(/([a-z0-9_-]+))?/?(page([0-9]+)\.html)?$  /forums/map.php?$2=$4&$1&start=$6 [QSA,L,NC]
        # Main feeds & channels
         RewriteRule  ^forums/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?(/([a-z0-9_-]+))?/([a-z0-9_]+)\.xml(\.gz)?$  /forums/gymrss.php?$9=$8&$2&$4&$6&gzip=$10 [QSA,L,NC]
        # Module feeds
         RewriteRule  ^forums/[a-z0-9_-]*-[a-z]{1,2}([0-9]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$  /forums/gymrss.php?$8=$1&$3&$5&$7&gzip=$9 [QSA,L,NC]
        # Module feeds without ids
         RewriteRule  ^forums/([a-z0-9_-]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$   /forums/gymrss.php?nametoid=$1&$3&$5&$7&modulename=$8&gzip=$9  [QSA,L,NC]
        # Google SitemapIndex
        RewriteRule ^forums/sitemapindex\.xml(\.gz)?$ /forums/sitemap.php?gzip=$1 [QSA,L,NC]
        # Module cat sitemaps
         RewriteRule ^forums/[a-z0-9_-]+-([a-z]{1,2})([0-9]+)\.xml(\.gz)?$  /forums/sitemap.php?module_sep=$1&module_sub=$2&gzip=$3  [QSA,L,NC]
        # Module sitemaps
        RewriteRule ^forums/([a-z0-9_]+)-([a-z0-9_-]+)\.xml(\.gz)?$ /forums/sitemap.php?$1=$2&gzip=$3 [QSA,L,NC]
        # END GYM Sitemaps & RSS
        #####################################################

    RewriteBase / 
    .htaccess in root.

    PHP Code: 
    DirectoryIndex index.php

    RewriteEngine On

    # Ðåäèðåêòû
    RewriteRule ^page/(.*)$ index.php?cstart=$[L]

    # Ñàì ïîñò
    RewriteRule   ^([0-9]{4})/([0-9]{2})/([0-9]{2})/page,([0-9]+),([0-9]+),(.*).html(/?)+$   index.php?subaction=showfull&year=$1&month=$2&day=$3&news_page=$4&cstart=$5&news_name=$6  [L]
    RewriteRule  ^([0-9]{4})/([0-9]{2})/([0-9]{2})/page,([0-9]+),(.*).html(/?)+$  index.php?subaction=showfull&year=$1&month=$2&day=$3&news_page=$4&news_name=$5  [L]
    RewriteRule  ^([0-9]{4})/([0-9]{2})/([0-9]{2})/print:page,([0-9]+),(.*).html(/?)+$  engine/print.php?subaction=showfull&year=$1&month=$2&day=$3&news_page=$4&news_name=$5  [L]
    RewriteRule ^([0-9]{4})/([0-9]{2})/([0-9]{2})/(.*).html(/?)+$  index.php?subaction=showfull&year=$1&month=$2&day=$3&news_name=$4  [L]

    RewriteRule ^([^.]+)/page,([0-9]+),([0-9]+),([0-9]+)-(.*).html(/?)+$ index.php?newsid=$4&news_page=$2&cstart=$[L]
    RewriteRule ^([^.]+)/page,([0-9]+),([0-9]+)-(.*).html(/?)+$ index.php?newsid=$3&news_page=$[L]
    RewriteRule ^([^.]+)/print:page,([0-9]+),([0-9]+)-(.*).html(/?)+$ engine/print.php?news_page=$2&newsid=$[L]
    RewriteRule ^([^.]+)/([0-9]+)-(.*).html(/?)+$ index.php?newsid=$[L]

    RewriteRule ^page,([0-9]+),([0-9]+),([0-9]+)-(.*).html(/?)+$ index.php?newsid=$3&news_page=$1&cstart=$[L]
    RewriteRule ^page,([0-9]+),([0-9]+)-(.*).html(/?)+$ index.php?newsid=$2&news_page=$[L]
    RewriteRule ^print:page,([0-9]+),([0-9]+)-(.*).html(/?)+$ engine/print.php?news_page=$1&newsid=$[L]
    RewriteRule ^([0-9]+)-(.*).html(/?)+$ index.php?newsid=$[L]

    # Çà äåíü
    RewriteRule ^([0-9]{4})/([0-9]{2})/([0-9]{2})(/?)+$ index.php?year=$1&month=$2&day=$[L]
    RewriteRule ^([0-9]{4})/([0-9]{2})/([0-9]{2})/page/([0-9]+)(/?)+$ index.php?year=$1&month=$2&day=$3&cstart=$[L]
    # Çà âåñü ìåñÿö
    RewriteRule ^([0-9]{4})/([0-9]{2})(/?)+$ index.php?year=$1&month=$[L]
    RewriteRule ^([0-9]{4})/([0-9]{2})/page/([0-9]+)(/?)+$ index.php?year=$1&month=$2&cstart=$[L]
    # Âûâîä çà âåñü ãîä
    RewriteRule ^([0-9]{4})(/?)+$ index.php?year=$[L]
    RewriteRule ^([0-9]{4})/page/([0-9]+)(/?)+$ index.php?year=$1&cstart=$[L]
    # âûâîä îòäåëüíîìó òåãó
    RewriteRule ^tags/([^/]*)(/?)+$ index.php?do=tags&tag=$[L]
    RewriteRule ^tags/([^/]*)/page/([0-9]+)(/?)+$ index.php?do=tags&tag=$1&cstart=$[L]
    # âûâîä äëÿ îòäåëüíîãî þçåðà
    RewriteRule ^user/([^/]*)/rss.xmlengine/rss.php?subaction=allnews&user=$[L]
    RewriteRule ^user/([^/]*)(/?)+$ index.php?subaction=userinfo&user=$[L]
    RewriteRule ^user/([^/]*)/page/([0-9]+)(/?)+$ index.php?subaction=userinfo&user=$1&cstart=$[L]
    RewriteRule ^user/([^/]*)/news(/?)+$ index.php?subaction=allnews&user=$[L]
    RewriteRule ^user/([^/]*)/news/page/([0-9]+)(/?)+$ index.php?subaction=allnews&user=$1&cstart=$[L]
    RewriteRule ^user/([^/]*)/news/rss.xml(/?)+$ engine/rss.php?subaction=allnews&user=$[L]
    # âûâîä âñåõ ïîñëåäíèõ íîâîñòåé
    RewriteRule ^lastnews/(/?)+$ index.php?do=lastnews [L]
    RewriteRule ^lastnews/page/([0-9]+)(/?)+$ index.php?do=lastnews&cstart=$[L]
    # âûâîä â âèäå êàòàëîãà
    RewriteRule ^catalog/([^/]*)(/?)+$ index.php?catalog=$[L]
    RewriteRule ^catalog/([^/]*)/page/([0-9]+)(/?)+$ index.php?catalog=$1&cstart=$[L]
    # âûâîä íåïðî÷èòàííûõ ñòàòåé
    RewriteRule ^newposts(/?)+$ index.php?subaction=newposts [L]
    RewriteRule ^newposts/page/([0-9]+)(/?)+$ index.php?subaction=newposts&cstart=$[L]
    # Ñòàòèñòè÷åñêèå ñòðàíèöû
    RewriteRule ^static/(.*).html(/?)+$ index.php?do=static&page=$[L]
    # âûâîä èçáðàííûõ ñòàòåé
    RewriteRule ^favorites(/?)+$ index.php?do=favorites [L]
    RewriteRule ^favorites/page/([0-9]+)(/?)+$ index.php?do=favorites&cstart=$[L]

    RewriteRule ^rules.htmlindex.php?do=rules [L]
    RewriteRule ^statistics.htmlindex.php?do=stats [L]
    RewriteRule ^addnews.htmlindex.php?do=addnews [L]
    RewriteRule ^rss.xmlengine/rss.php [L]
    RewriteRule ^sitemap.xmluploads/sitemap.xml [L]

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule 
    ^([^.]+)/page/([0-9]+)(/?)+$ index.php?do=cat&category=$1&cstart=$[L]
    RewriteRule ^([^.]+)/?$ index.php?do=cat&category=$[L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule 
    ^([^<]+)/rss.xmlengine/rss.php?do=cat&category=$[L]
    RewriteRule ^page,([0-9]+),([^/]+).htmlindex.php?do=static&page=$2&news_page=$[L]
    RewriteRule ^print:([^/]+).htmlengine/print.php?do=static&page=$[L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule 
    ^([^/]+).htmlindex.php?do=static&page=$[L
    Please help me..

    I tried merging the htaccess too but didnt work..

    Everything is fine without phpbb_seo mod
    World Life Reviewed by World Life on . Redirection problem Hello, I have DLE installed on the main root.. And forum installed on Folder "http://rapidshare-links.org/forums/" So the trouble is that after i activate the seo.. Its some how mixing with the current script.. http://www.phpbb-seo.com/en/images/smilies/icon_sad.gif Please see for your self.. Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Banned
    It works with vBulletin so I believe it is the SEO you got. My forums redirect to /forums and I also use SEO and it works. Just try to install it again. Maybe you missed a step.

  4.     
    #3
    Member
    Works fine here
    This is the staff, you have been banned

  5.     
    #4
    Member
    Website's:
    dhi-forumerz.com watchanimes.org c0ver.me
    I will try installing vb then

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. What is the PROPER way of Domain Redirection?
    By Arthur in forum Webmaster Discussion
    Replies: 6
    Last Post: 10th Apr 2012, 01:50 PM
  2. Help about domain redirection
    By michelangelo in forum Technical Help Desk Support
    Replies: 1
    Last Post: 12th Sep 2011, 07:44 AM
  3. How To Sop Redirection ?
    By r@liablehost in forum Technical Help Desk Support
    Replies: 3
    Last Post: 2nd Jan 2011, 11:36 AM
  4. Redirection problem.
    By Phamous in forum Technical Help Desk Support
    Replies: 2
    Last Post: 13th Dec 2009, 11:21 AM
  5. Redirection Error?
    By Mdrop in forum Feedback and Suggestions
    Replies: 5
    Last Post: 10th Jul 2009, 12:57 PM

Tags for this Thread

BE SOCIAL