我有一个包含多个php文件的自定义文件夹。我想通过从URL中删除.php来创建一个友好的URL。所以我在自定义文件夹中创建了.htaccess文件,其中所有.php文件都位于并写入了下面的代码,但它不起作用。
我的网址是:magento/cl/unilever.php
预期网址:magento/cl/unilever
.htaccess包含:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^unilever $ unilver.php
答案 0 :(得分:0)
假设您只想重写单个目录,请尝试以下方法:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(\w*)$ $1.php [L]