我希望清理我的网址,而且我遇到了最困难的时间。我在GoDaddy上有一个Apache服务器。不确定托管是否是问题。我上传了很多.htaccess
个文件,但都没有。
目标:我正试图从我的网站上彻底消除“.php”。
示例:http://example.com/about.php
和http://example.com/folder/anotherpage.php
我希望它能够阅读http://example.com/about
和http://example.com/folder/anotherpage
如何为此编写.htaccess
文件?我发现的所有答案都更多地涉及参数。
我所做的一切似乎都没有效果。这是GoDaddy问题吗?请帮忙。提前谢谢。
答案 0 :(得分:0)
我认为应该如下:
RewriteEngine On
RewriteRule about about.php
RewriteRule folder/anotherpage folder/anotherpage.php