我被 .htaccess 修改困住了,需要一点帮助。
首先,这是我的 htaccess 里面的内容。
RewriteEngine on
RewriteRule ^(.*)\.html$ $1.php [nc]
例如,我创建了名为 test.php 的文件并上传到我的服务器。
我希望我的服务器表现得像这样。
http://example.com/test/test.html -> http://example.com/test/test.html(as it is)
http://example.com/test/test.php -> http://example.com/test/test.html
但是对于我现在拥有的 .htaccess,我仍然同时拥有 .php 和 .html ,这可能被谷歌机器人等搜索引擎爬虫视为文件复制(不是吗?)。
任何帮助表示赞赏。