Vanilla论坛中的所有链接似乎都无处可去。就像我被困在主页上一样,index.php没有拿起任何网址链接。
我的.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
答案 0 :(得分:1)
我想知道你的最后一行是否有反斜杠,只需删除它。
RewriteRule ^(.*)$ index.php?p=$1 [QSA,L]
注意:这个.htaccess不仅与Vanilla有关。但通常使用(包括Wordpress)