Reputation: 213
I would redirect with htaccess all codeigniter pages with following url to a coming soon page
*.domain.ext/customer/any_page
to /customer/comingsoon
any tips?
Upvotes: 0
Views: 202
Reputation: 66
Why not use the routing facility in CodeIgniter?
$route['default_controller'] = 'customer/comingsoon';
or
$route['(:any)'] = 'customer/comingsoon';
Try this :
RewriteEngine on
RewriteCond %{REQUEST_URI} /(.*)
RewriteRule /(.*) http://domain.ext/customer/coomingsoon
Upvotes: 1