vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

Page 1 of 2
1 2 LastLast
Results 1 to 15 of 29

Windows Server 2008 + IIS 7 + Url Rewrite

This is a discussion on Windows Server 2008 + IIS 7 + Url Rewrite within the Pre-Sales Questions forums, part of the Announcements & Pre-Sales category; Hello, I'm really interest to buy and install it on my vb forum. I would like to have the assurance ...

  1. #1
    Junior Member
    Join Date
    Oct 2005
    Posts
    23

    Windows Server 2008 + IIS 7 + Url Rewrite

    Hello,
    I'm really interest to buy and install it on my vb forum.
    I would like to have the assurance that it works on :
    -Windows Server 2008
    -IIS 7
    -PHP 5 in FastCGI
    -Ms Url Rewrite Module
    and if you have the install guide or some information on the platform above.

    Thanks,
    Renato

  2. #2
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    Hello Renato ,

    vBSEO works with IIS but ISAPI_rewrite module must be installed and runnng on the server.
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  3. #3
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    Hi Mert,
    well this is a problem because I have that rewrite module already installed on the server.
    No one already done tests on the official rewrite engine of IIS7 ?
    Is there a lite version that I can test ?
    Thanks for your help.
    Renato

  4. #4
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    You can download ISAPI_rewrite 3 lite version from Helicon Tech - Downloads

    Unfortunately vBSEO doesn't have a lite version. However you are welcome to check our Demo
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  5. #5
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    Hi Mert,

    well I just buy it, and then I will make it work under Url Rewrite

    Ciao,

    Renato

  6. #6
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    Welcome to vBSEO Please feel free to create a support ticket if you have any questions abour Url Rewrite
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  7. #7
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    I hope to post only the web.config file that manage microsoft url rewrite module for you and your users

  8. #8
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    Ok Mert,
    I was able to make it work under IIS7 + Url Rewrite, I need only to make a change on the third rewrite rule.
    Could you please tell me what the first 2 rules have to manage and also the kind of request, so I can check its.
    My board S W Z O N E F O R U M - Powered by vBulletin , when I finish the setup I send you the web.config file.
    Ciao
    Renato

  9. #9
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    Great to hear Renato

    Code:
    RewriteCond %{HTTP_HOST} .*yourdomain.com
    RewriteRule ^/forums/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forums/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    This code is for vBSEO Sitemap Generator. It redirects all xml - txt.gz extension requests to correct file. Fyi : sitemap files are normally located inside vbseo_sitemap/data folder

    Code:
    RewriteCond %{HTTP_HOST} .*yourdomain.com
    RewriteCond %{REQUEST_URI} !/forums/(admincp/|modcp/|cron)
    RewriteRule ^/forums/((archive/)?(.*\.php(/.*)?))$ /forums/vbseo.php?vbseourl=$1 [L,QSA]
    
    This is for vBulletin archive rewrites. I personally advise vBSEO users to disable vBulletin archive as i find it counter product to vBSEO. The second line have folders that you prevent rewrite rule to work.

    Code:
    RewriteCond %{HTTP_HOST} .*yourdomain.com
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^/forums/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^/forums/(.+)$ /forums/vbseo.php?vbseourl=$1 [L,QSA]
    
    This is for vBulletin url rewrites.
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  10. #10
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    I don't want to bore you but for the first two rules do you know how many variables they pass ?
    I ask you this because the htaccess for the default rule import 2 variables in iis7 while it uses only 1 so in the first moment I have 404 errors.
    Can you post me a link that should be modify by vbseo so I can test it on iis7 ?
    Thanks a lot !
    Renato

    ps there is a guide to optimize the set up of vbseo because you suggest me to disable archive in vb ...

  11. #11
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    You can check the following two thread
    Briansol's Ultimate Guide to vBSEO
    vBSEO Optimization Tips

    Which page gives 404 error to you ?
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  12. #12
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    The 404 error comes just after the import of the htaccess file in IIS7, then I modify the rule and everything works fine.

    I need two url example for the first two rules Sitemap generator and Archive to check the imported rules in IIS7.

  13. #13
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    Sitemap url is http://forum.swzone.it/sitemap_index.xml.gz but before checking make sure you installed vBSEO Sitemap Generator 2.5

    You can check example archive rewrites at http://www.vbseo.com/sitemap/
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

  14. #14
    Junior Member
    Join Date
    Oct 2005
    Posts
    23
    I don't know why, but when launch sitemap generator I receive after some times iis error 500 internal server error ... any suggest ?
    Ciao
    Renato

  15. #15
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul
    Posts
    16,464
    Blog Entries
    4
    Did you chmod 777 vbseo_sitemap/data folder. Also you may want to delete the .htaccess file inside vbseo_sitemap/data folder but you should prevent users browsing that folder.
    Mert Gökçeimam / Crawlability Inc.

    Yeni vBSEO Kontrol Paneli ve vBSEO 3.5 Yayın Tarihleri

    vBSEO 3.5 Beta 2 Yayınlandı - vBulletin 4 Uyumlu!



    Kişisel Sitem : Felsefe - Kültür merkeziniz

Similar Threads

  1. Windows Server
    By pcwolfx® in forum Türkçe
    Replies: 5
    Last Post: 02-12-2009, 12:08 PM
  2. windows server
    By nihat in forum Türkçe
    Replies: 24
    Last Post: 02-11-2009, 06:10 PM
  3. vBSEO under Windows Server 2003
    By HotHuskers.com in forum Troubleshooting
    Replies: 5
    Last Post: 01-01-2007, 09:28 PM
  4. Any news on URL ReWrite for Windows Server
    By Paul Govier in forum Pre-Sales Questions
    Replies: 4
    Last Post: 09-07-2006, 04:49 PM