我想通过使用 .htaccess 文件排除一页来重定向同一页面上的请求。我用过的代码
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
有人知道我如何在名为“register.php”的单个页面上获取条件吗?意味着我现在要打开 register.php,它的打开 index.php。
提前致谢