안녕하세요
나는 vbulletin 3.8과 vbet의 무료 버전을 사용하고 NGINX 웹서버를 사용하고 있습니다.
이것은 내 재작성 규칙입니다
Code:
location = /forum {
rewrite ^.+ /forum/ permanent; }
location /forum {
rewrite ^/forum/((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ /forum/vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 last;
rewrite ^/forum/(ga|af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ /forum/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forum/ last;
rewrite ^/forum/(ga|af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ /forum/vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forum/$2 last;
if (!-e $request_filename) {
rewrite ^/forum/(.*)$ /forum/vbenterprisetranslator_seo.php last;
}
}
if ($request_filename ~ "\.php$" ) {
rewrite ^/forum/(.*)$ /forum/vbenterprisetranslator_seo.php last;
}
제가 페이지 링크를 번역 얻을 때, CSS 파일 디렉토리와 같은 교체를 참조하십시오
Code:
/forum/tr/clientscript/vbulletin_important.css?v=387
그것은해야합니다
Code:
/forum/clientscript/vbulletin_important.css?v=387
누군가 날 도와 드릴까요?