我正在尝试将我的网站 URL 重写为更友好的 URL,例如:
www.mysite.com/profile.php
至
www.mysite.com/profile
到目前为止,我可以通过在 URL 地址栏中写入重写 URL 来做到这一点,但是当通过单击链接转到页面时,配置文件页面 URL 不会更改为重写 URL。我在这里错过了什么吗?
这是我的 .htaccess 代码
Options +FollowSymLinks
RewriteEngine On # Turn on the rewriting engine
RewriteRule ^profile/?$ profile.php [NC,L] # Handle requests for "profile"
感谢您的任何建议。