我正在尝试从中获取我的网址:
www.exmple.com/test.php?type=abc&id=12345
to
www.exmple.com/rrr/abc
可能吗... ?谢谢
是的。可能
要解决此问题,只需将以下内容添加到您的 htaccess 文件中:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com
RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.html HTTP/
RewriteRule ^index.html$ http://www.yoursite.com/ [R=301,L]
更多资源在这里