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 に答える