1

香草论坛中的链接似乎都没有。就像我被困在主页上并且 index.php 没有拾取任何 url 链接。

我的 .htaccess 文件:

# Modified
# If you modify this file then change the above line to: # Modified
<IfModule mod_rewrite.c>
   RewriteEngine On
   # Certain hosts may require the following line.
   # If vanilla is in a subfolder then you need to specify it after the /. 
   # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)

   RewriteBase /forum-new
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
</IfModule>

任何帮助将不胜感激,我正在使用Vanilla v2.1

4

1 回答 1

1

我想知道您的最后一行是否带有反斜杠,只需将其删除即可。

RewriteRule ^(.*)$ index.php?p=$1 [QSA,L]

注意:这个 .htaccess 不仅与 Vanilla 有关。但常用(包括 Wordpress)

于 2013-10-30T12:06:15.987 回答