重写我的BASE URL - Vbulletin

时间:2013-03-27 18:20:59

标签: url base-url

我目前有一个vbulletin论坛,我将其主题转移到另一个网站来制作应用程序。

将其放在文件的顶部:

<base href="http://example.com/forums/"/><!--[if IE]></base><![endif]-->

所以我只需复制/粘贴源代码然后修改主体。

这里的问题是我有一个“submit.php”按钮,它根据基本网址进行的操作因此变为http://example.com/forums/submit.php但是我希望它能够做到这一点: http://application.example.com/submit.php

如果我从源代码更改BASEURL,主题将不再起作用,我正在尝试保留主题

1 个答案:

答案 0 :(得分:0)

如果你在mod_rewrite中使用apache,你可以在根目录中创建.htaccess文件

RewriteEngine on

# Don't apply to URLs that go to existing files or folders.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Only apply to URLs that aren't already under folder forums.
RewriteCond %{REQUEST_URI} !^/forums/

# Rewrite all those to insert /forums.
RewriteRule ^(.*)$ /forums/$1

文档 http://httpd.apache.org/docs/2.0/misc/rewriteguide.html