0

我有这个代码.htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ decode.php

当我去www.my_website/index的时候decode.php被称为

但是,当我去 时www.my_websitedecode.php不会调用。

decode.php仅用于加载页眉和页脚。

4

1 回答 1

1

在您的 .htaccess 文件中尝试添加 DirectoryIndex decode.php index.php

于 2013-09-07T17:56:25.890 回答