Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试重写以下 URL
www.domain.com/?part=messages
至:
www.domain.com/messages
我已经关注了一些 .htaccess 教程,但我做不到。我怎样才能让它工作?
这实际上是一个非常简单的规则:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+?)/?$ /?part=$1 [L,QSA]