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.
我想重定向
www.domain.com/abc
到
www.domain.com/index.php?a=abc
仅当文件夹 abc 尚不存在时。我应该如何编写 .htaccess 文件?
尝试
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/(.*)$ http://www.domain.com/index.php?a=$1 [L]