0
cakephpで1ページをリダイレクトしようとしています。私の推測では、.htaccessはこれを行う方法です。cakePHPでhtaccessを使用してページをリダイレクトする
私はこの持っている/ページ/ consultation2016
に/相談からリダイレクトしようとしている:.htaccessファイルを触れることなく
Redirect /consultation http://thep.ca/pages/consultation2016
<IfModule mod_rewrite.c>
RewriteEngine on
php_value post_max_size 70M
php_value upload_max_fiesize 70M
RewriteBase /app
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>