如何重写URL的不beening显示文件扩展名
问题描述:
我如何重写URL,使用htaccess的,我已经tryed像这样:如何重写URL的不beening显示文件扩展名
RewriteRule ^file$ file.php [L]
我不想显示文件扩展名
我想重写URL是这样的:
http://example.com/file.php
到http://example.com/file
答
RewriteEngine on
RewriteRule ^file$ /file.php
可能的重复:http://stackoverflow.com/questions/4026021/remove-php-extension-with-htaccess – JMax