i have install the wordpress at /,and when i try to enable the rewrite like the rules:
---
OR
index.htm index.php
[/code]
http://domain/index.html ,received 404 .
index.php is well.
but rewrite for post ,tag,cat are work well.only get 404 when i try to open index.html.
---
Code:
RewriteRule ^/index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /. /index.php [L]
Code:
RewriteRule ^/index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /index.php [L]
[code]
----
and enable index:
[/code]
http://domain/index.html ,received 404 .
index.php is well.
but rewrite for post ,tag,cat are work well.only get 404 when i try to open index.html.