-1
我需要在.htaccess中創建規則,以便從http://domain/test
重寫爲http://domain/?test
我應該如何寫入.htaccess?使用htaccess創建RewriteRule
我需要在.htaccess中創建規則,以便從http://domain/test
重寫爲http://domain/?test
我應該如何寫入.htaccess?使用htaccess創建RewriteRule
您可以在DOCUMENT_ROOT/.htaccess
文件試試這個代碼:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^(.+)$ /?$1 [L]