この条件に基づいて htaccess リダイレクトを実行しようとしています:
「www」のないすべてのページhttp://siteweb.com
をhttp://www.siteweb.com/index.html
Exceptにリダイレクトしますhttp://siteweb.com/index.php
にリダイレクトするhttp://siteweb.com/index.php
必要がありますhttp://www.siteweb.com/index.php
実際、私はこのコードを使用しています[しかし、何か間違っています:s]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule !^/index.php$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^/index\.php$ [NC]
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L]
前もって感謝します。