少し問題があります。よりユーザーフレンドリーな URL のために htaccess を使用していますが、URL に空白を追加すると、次のエラーが表示されます。
The requested URL /capitole/Limba Engleza was not found on this server.
私の htaccess コードは次のようになります。
<ifModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule nota.jpg php/img_nota.php [R=301]
RewriteRule ^login login.php
RewriteRule ^recuperare recuperare.php
RewriteRule ^inregistrare inregistrare.php
RewriteRule ^/?([\sa-zA-Z0-9_-]+)(/?([a-z0-9=]+)(/=)?([a-z0-9=]+)?)?$ index.php?page=$1&par1=$3&par2=$5 [NC,L]
</ifModule>
誰かが私を助けることができますか?