2011-08-24 119 views
0

我如何重写URL,使用htaccess的,我已经tryed像这样:如何重写URL的不beening显示文件扩展名

RewriteRule ^file$ file.php [L]

我不想显示文件扩展名

我想重写URL是这样的:

http://example.com/file.phphttp://example.com/file

+1

可能的重复:http://stackoverflow.com/questions/4026021/remove-php-extension-with-htaccess – JMax

回答

0
RewriteEngine on 
RewriteRule ^file$ /file.php 
相关问题