简单的 htaccess 转换
Simple htaccess conversion
我是htaccess的新手
我要翻译
http://localhost/hawaii/index.php?city=arizona
至
http://localhost/hawaii/arizona
任何即时帮助对我来说都是非常好的
将此添加到站点根目录中的 .htaccess 文件中。
RewriteEngine On
RewriteCond %{THE_REQUEST} \ /([^/]+)/index\.php\?city=([^\s&]+) [NC]
RewriteRule ^ /%1/%2 [R=301,L]
RewriteRule ^([^/]+)/([^/]+)/?$ //index.php?city= [QSA,L]
我是htaccess的新手 我要翻译 http://localhost/hawaii/index.php?city=arizona
至 http://localhost/hawaii/arizona
任何即时帮助对我来说都是非常好的
将此添加到站点根目录中的 .htaccess 文件中。
RewriteEngine On
RewriteCond %{THE_REQUEST} \ /([^/]+)/index\.php\?city=([^\s&]+) [NC]
RewriteRule ^ /%1/%2 [R=301,L]
RewriteRule ^([^/]+)/([^/]+)/?$ //index.php?city= [QSA,L]