简体   繁体   中英

URL redirect using .htaccess

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

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

Try

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

Enjoy, i hope i helped you :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM