I have installed the vbSEO script to my server. But something wrong about .htaccess configuration. I'm uploaded recomended .htaccess file to my forum directory. Nothin' changes. I'm sure to i did every configuration that i have to do. I worked xxx.com/forum/vbseocp.php? After, I uploaded the .htaccess file to root directory my host package (into public_html) and i changed the; # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums) #RewriteBase /forum Code (markup): #RewriteBase /forum I'm removing the sharp then when i'm attempting to rand my site as xxx.com/forum and it is redirecting to xxx.com/ Still nothing works. Nothing works means the rewriting urls that i have done on xxx.com/forum/vbseocp.php? One thing; I could not open the pages on ~/forum when i delete the "#" in the .htaccess located the root directory. I have ask this ques. vbseo.com also. comletely recommended .htaccess is below; # Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable the hack in # the vBSEO control panel to stop url rewrites. RewriteEngine On # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums) #RewriteBase /forum RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{REQUEST_FILENAME} -f RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images)/ RewriteRule ^(.*)$ $1 [L] RewriteCond %{QUERY_STRING} !vbseourl= RewriteCond %{REQUEST_FILENAME} !chat RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L] RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L] Code (markup):