Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はcakePHPを使用しています。次の条件の書き換えルールを作成するにはどうすればよいですか。
http://www.example.com/pages/about_us
に
http://www.example.com/about
contact_usや他のページと同様です。
app/Config/routes.php
Router::connect('/about', array('controller' => 'pages', 'action' => 'display', 'about_us'));
次のように 301 リダイレクトを使用できます。
Redirect 301 /about_us http://www.example.com/about