Not signed in (Sign In)

Vanilla 1.1.2 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorPat
    • CommentTimeMay 10th 2007
     permalink
    Please I need help with this
    Right now my htaccess looks like this and is working very well for subdomains
    ==========================
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www\.(.*)
    RewriteRule ^(.*) http://%1/$1 [R,L]
    RewriteRule ^(.*) blogs/$1 [QSA,L]
    </IfModule>
    ============================ So it is OK
    Now, my question

    When user types http://mydomain.com
    that takes him to this page
    http://mydomain.com/blogs/portal.php (cool)
    But I DO WANT to point to the main page of the website (non Lyceum page)
    http://mydomain.com/index.html (which is my home page)
    There, I want to place a link sending the user manually to http://mydomain.com/blogs/portal.php

    In other words, it is nice what the guys have help here to have automatically redirect to the portal page, but that
    creates problems to my main page and also some conflicts with other software that does the email and it is installed in http://mydomain.com/mail/
    But users access thru a subdomain, example: http://mail.mydomain.com

    I want both to work without conflict, example
    check mail:
    http://mail.mydomain.com (which is a mail application installed in http://mydomain.com/mail/)
    access blog:
    http://myblog.mydomain.com (which is a Lyceum application installed in http://mydomain.com/blogs/)

    Makes sense?, I hope so!

    Thanks in advance,

    Pat
    •  
      CommentAuthorShadyCraig
    • CommentTimeMay 10th 2007
     permalink
    Hello,

    I'm no expert with htaccess but could you move the htaccess file out of the web root directory and place it in /blogs?
    I think this would sort your problems
    • CommentAuthorPat
    • CommentTimeMay 10th 2007
     permalink
    I have done that. in fact i Have even working with the Apache conf file becuase I am having other error

    After login in the a BLOG, and then clicking on the Link for the blog from inside /blogs/profile
    then I see the application trying to access /admin (place where we write, manage, links, users, etc)
    But it is not getting there, it is displaying the BLOG as it was hit by a regular user, in other words I CANNOT enter the administration (dashboard)

    Help please

    Thanks

    Pat
    • CommentAuthornuno
    • CommentTimeMay 11th 2007 edited
     permalink
    Just move your lyceum to public_html/blogs folder.
  1.  permalink
    Anyone have any lucky with that?
    I followed the guide http://nepherim.lifehaiku.com/2006/installing-lyceum-with-clean-urls/
    And my httacces is
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www\.(.*)
    RewriteRule ^(.*) http://%1/$1 [R,L]
    RewriteRule ^(.*) blogs/$1 [QSA,L]

    Is on the public_html folder, and make subdomains works, but redirect all domain request to http://mydomain.com/blogs/portal.php instead of http://mydomain.com/contact.php

    My lyceum intallation is in public_html/blogs folder.

    I'm not good at modrewrite, so if someone has made this worked care to share ?

    Thanks!