我正在尝试index.html
像我的index.php
规则一样剥离所有文件和扩展名。意思是,而不是
www.discretix/modules-hdcp/index.html
应该有
www.discretix/modules-hdcp/
它适用于index.php
但index.html
不适用。我正在使用 wordpress,我的服务器是 apache。
这些是我的 htaccess 规则:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~discretix/
RewriteRule ^index\.php$ - [L]
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /~discretix/index.php [L]
</IfModule>