我有一个小问题。我正在使用 htaccess 来获得更多用户友好的 url,但是当我在 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>
有人能帮我吗?