在发布此处之前,我已尝试过解决方案URL1,URL2但尚未修复。我的.htaccess
代码如下:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
在我的应用$_GET
和$_POST
中使用htdocs
这样的文件结构:
shopping ->(main folder)
css(folder)
images(folder)
js(folder)
.htaccess
file1.php
file2.php
:
:
file9.php
所以我如何摆脱删除网址中的.php
答案 0 :(得分:0)
首先检查.htaccess
是否适用 - see here;
确保您的配置允许覆盖FileInfo
个文件中的至少.htaccess
个(您也可以AllowOverride All
):
<Directory "/var/www/html">
AllowOverride FileInfo
</Directory>
有关详细信息,请参阅this question。