我想让我的 url 网站干净。http://sample.com/about-me
这是我的代码:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^ %{REQUEST_URI}.php
但我检查仍然可以访问http://sample.com/about-me.php
. 如何使我的网站可以访问http://sample.com/about-me
,所以http://sample.com/about-me.php
将永久重定向到http://sample.com/about-me
???
我认为这种技术对 SEO 有好处,因为规范化只需要一个 url,如果使用两个 url 可以访问,我认为它对 SEO 不利,并且会使搜索引擎感到困惑。不对吗???
谢谢