.htaccess - 如何将所有URL重定向到除index.php之外的url.php

kaj*_*jab 8 php .htaccess

RewriteEngine On    # Turn on the rewriting engine
RewriteRule    .    url.php    [NC,L]    
Run Code Online (Sandbox Code Playgroud)

我正在将所有请求重定向到url.php,但我想保留index.php.

cry*_*c ツ 7

# Turn On ReWrite Engine
RewriteEngine On

# Exclude url.php and index.php from redirecting
RewriteCond %{REQUEST_URI} !^/(index|url)\.php

# Redirect to url.php
RewriteRule . url.php [NC,L]
Run Code Online (Sandbox Code Playgroud)