标签: php .htaccess
用户请求示例网址
http://example.com/test
而不是错误404
重定向到网址
http://example.com/index.php?test
抱歉英语不好
答案 0 :(得分:0)
您可以在.htaccess:
.htaccess
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+)$ /index.php?$1 [L,QSA]
对于真正的重定向,不仅要重写,请使用[R=301,L,QSA]标志
[R=301,L,QSA]