我想在PHP中编写相当于一些重写规则的内容,但我不熟悉它们,因此需要准确的英文翻译:
RewriteRule ^assets($|/) - [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*)$ /index.php?path=$1 [NC,L,QSA]
据我所知(我猜这有点不对)这就是说:
index.php?path=<path>
不知道[NC,L,QSA]
做了什么。我需要它正确准确地编写PHP。感谢。
答案 0 :(得分:0)
规则&amp;条件解释:
?
之后的部分)都会附加到index.php?path=<path>
。标记(这些是括号中的代码)简而言之:
有关详细信息,请参阅docs(无论如何这是合情合适的。)