URL redirect using .htaccess

青春壹個敷衍的年華 提交于 2020-01-16 09:36:07

问题


I have changed my normal™ php website to CodeIgniter framework. My issue is

I need to:

redirect http://samajam.org/contact_us.php to http://samajam.org/contact


回答1:


Try

Redirect 301 /contact_us.php http://samajam.org/contact

Enjoy, i hope i helped you :)




回答2:


You can set 301 redirection in your .htaccess file like -

Redirect 301 http://samajam.org/contact_us.php http://samajam.org/contact

OR you can use CodeIgniter URL Helper for redirection



来源:https://stackoverflow.com/questions/49505791/url-redirect-using-htaccess

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!