如何使URL搜索引擎友好?

时间:2009-10-31 05:31:13

标签: php .htaccess url-rewriting

我想将mysite.com/profile.php改为mysite.com/profile

我将htacess文件写为

RewriteEngine On 

RewriteRule ^profile/?$ profile.php [NC,L]

并放在根目录中。它不起作用。我使用apache服务器。我的计划有什么问题?

1 个答案:

答案 0 :(得分:3)

尝试这样的事情:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

这样你就不必为每个URL做到这一点。

credit