标签: php .htaccess
如何将此网址http://myurl.com?key=somevalue重写为 http://myurl.com/somevalue使用.htaccess。 请帮助我,提前谢谢
这是我的代码
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ ?key1=/$1 [L,QSA] in .htaccess file