http://domain.com/exampleにアクセスすると、ルールがうまく機能します。クエリはよさそうです。
http://domain.comにアクセスすると、index.php が読み込まれず、空のリダイレクトが行われたようです。http : //domain.com/city.php?q=
Rewrite が起動する代わりに index.php をロードするにはどうすればよいですか...
Options +FollowSymLinks
RewriteCond %{REQUEST_URI} !\.(css|jpg|gif|png|jar|js|html|htm|php)$
RewriteEngine On
RewriteRule ^([^/]*)$ /city.php?q=$1 [L]
ありがとう