我对如何创建包含特定单词的页面url的.htaccess表示怀疑,以使用index.php中的性能。
我不是要重定向301到index.php。
但是我想访问url,例如/my-account/lost-password/index.html或/my-account/create/index.html。而且,当访问这两个URL时,它将被称为index.php中的内容,而不会重定向到index.php。
是否可以编写.htaccess来满足上述要求?
谢谢
答案 0 :(得分:1)
您的意思是这样的吗?
RewriteEngine On
RewriteCond %{REQUEST_URI} /lost-password/index.html
RewriteRule . index.php [L]
假设您将其放入my-account
文件夹中的htaccess文件中。