我实际上拥有这种网址: https://myDomainDotCom/#!page-accueil
我想要改用此网址: https://myDomainDotCom/accueil
所以,我做了这个.htaccess:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/#!page-(.*) https://%{SERVER_NAME}/$1 [R,L]
</IfModule>
但是它不能按我的意愿工作。
您对此有想法吗?