RewriteCond %{REQUEST_URI} !^/topic This is the request url that does not start with /topic So how to write a regular expression that does not start with album and mlog? Thanks
ringa_lee
^(?!(?:album|mlog)).*
ringa_lee