0

我有一个网站这样说:

images / index.html  
images/nav / index.html  
styles/ index.html  
styles/images/ index.html  
js/ index.html 
index.php  

我想使用 .htaccess 重写模块从站点中任何位置的每个 index.html 重定向到 index.php

这是我测试过的,但没有让我得到想要的结果:

RewriteRule ^index\.htm$ index.php [NC,R]

任何肝病将不胜感激

4

1 回答 1

0

通过启用 mod_rewrite 和 .htaccess httpd.conf,然后将此代码放在您.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^(.*?)index\.html?$ %1/index.php [L,R,NC]
于 2012-05-09T17:42:54.183 回答