我想将mysite.com/profile.php改为mysite.com/profile
我将htacess文件写为
RewriteEngine On
RewriteRule ^profile/?$ profile.php [NC,L]
并放在根目录中。它不起作用。我使用apache服务器。我的计划有什么问题?
答案 0 :(得分:3)
尝试这样的事情:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
这样你就不必为每个URL做到这一点。