![]() |
|
#2
| ||||
| ||||
|
你空间支持 .htaccess 吗>?
|
|
#4
| ||||
| ||||
|
# 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 / 这里填写你的论坛目录.. ..你会不会英语?? #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com #RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301] RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{QUERY_STRING} !vbseourl= RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron) RewriteRule ^(.*\.php(/.*)?)$ vbseo.php?vbseourl=$1 [L,QSA] RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$ RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/ RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA] |
|
#5
| |||
| |||
|
yes...我会。。。。等我改我讲你听得不得。。。thanks..... 论坛目录是不是Forums 改了RewriteBase/ www.monkeylovepig.com 改了那个变了 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root@unix15.servage.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
__________________ 美国论坛 |
|
#6
| ||||
| ||||
|
你论坛后台设置的主页地址是 monkeylovepig.com/vbb2/ 你应该设置正确的首页地址. 代码: www.monkeylovepig.com |
|
#8
| ||||
| ||||
| VBSEO在Apache安装方法和在vBulletin中文版中出现的问题. VBSEO的安装. (附vBseo 3.1.0 中文版下载) Apache环境 打开httpd.conf 开启rewrite_module模块-(虚拟主机如果不支持rewrite那就不能用vbseo) 代码: LoadModule rewrite_module modules/mod_rewrite.so 或者把rewriteg规则直接写入到httpd.conf(可以减少负载,提高网站连接速度) 实例 代码:
<VirtualHost ***********:80>
ServerAdmin *****@**.com
DocumentRoot XXXX/htdocs/92an
ServerName www.92an.com
ServerAlias 92an.com
</VirtualHost>
<Directory "XXX/htdocs/92an">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride None
<IfModule rewrite_module>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.92an\.com
RewriteRule (.*) http://www.92an.com/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
RewriteRule ^(.*\.php(/.*)?)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]
</IfModule>
Order allow,deny
Allow from all
</Directory>
|
|
#9
| ||||
| ||||
| VBSEO中文版常见问题/解决方法 开启替换'META 描述'内容?后出现CSS/图片丢失问题. 使用专业文本编辑器打开includes/config_vbseo.php 搜索 代码:
define('VBSEO_UTF8_SUPPORT', 0);
代码: define('VBSEO_UTF8_SUPPORT', 1);
|
|
#10
| |||
| |||
|
我的也弄不好,装上是上了,但是网址全打不开.
|