如何将页面重定向到另一个URL?

时间:2015-12-15 17:40:03

标签: php .htaccess

用户请求示例网址

http://example.com/test

而不是错误404

重定向到网址

http://example.com/index.php?test

抱歉英语不好

1 个答案:

答案 0 :(得分:0)

您可以在.htaccess

中使用
RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /index.php?$1 [L,QSA]

对于真正的重定向,不仅要重写,请使用[R=301,L,QSA]标志