我的本地项目的根是localhost/website
我使用以下内容创建了文件 localhost/website/.htaccess:
RewriteEngine On
RewriteRule ^content/(.*)$ content/$1.html [L]
我到底想要实现什么: localhost/website/main -> localhost/website/content/main.html 其中localhost/website/content/main.html确实存在。
我尝试了几条规则,但没有一条对我有用。不知何故,我觉得我错过了一些东西。