我的网址是:http://www.example.com/home.php我想在最终用户将我的网站导航为http://www.example.com/home时显示它。我知道这可以通过.htaccess文件来完成。
Following is the htacces file:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+)$ $1.php
.htaccess文件中的上述代码没有任何结果。我希望显示没有.php扩展名的整个网站页面。任何人都可以建议我如何操作
答案 0 :(得分:1)
试试这个
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
</IfModule>