0
次のコードはうまくいきます。しかし、それは何百ものPHPファイルのためにそれを行うには多くの時間がかかります。すべてのPHPファイルのRewriteCond%{REQUEST_URI}
RewriteEngine on
RewriteBase/
RewriteCond %{REQUEST_URI} !^/abc.php
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} !^/home.php
RewriteCond %{REQUEST_URI} !^/settings.php
RewriteCond %{REQUEST_URI} !^/messages.php
...
...
...
RewriteRule ^/?([a-zA-Z0-9\-=&[email protected]/.]+)/?$ abc.php?u=$1 [QSA,L]
すべてのphpファイルを1行ずつ書き込む必要があります。すべてのPHPページでこれを行う簡単な方法はありますか?
おかげであなたCroisesを:) – Mert