を高く評価し
RewriteEngine on
Options +FollowSymlinks
DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?mode=$1 [L,QSA]
あなたのfavicon.icoを条件とすることができます試合を破るパターンを無効にするには、辞書順に一致するものを否定する代わりに!
を使用します。
RewriteEngine on
Options +FollowSymlinks
DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^favicon\.ico [NC]
RewriteRule ^(.*)$ index.php?mode=$1 [L,QSA]
新しいホスティングプロバイダはmod_rewriteをサポートしていますか? –
私のコードを の中に追加しました。 DirectoryIndex index.phpをDirectoryIndex index.htm index.phpに変更しました。これでサイトはindex.htmに移動します。 mod-rewriteが有効になっていると思います。 –
fred
回答: 'RewriteRule ^(。*)$ /index.php?mode=$1 [L、QSA]' – fred