Hi there,
When using the Redirects section of cPanel, is it possible to change the format that the redirects are created in? This is because I keep getting 404 pages for the way cPanel creates them (maybe because it's clashing with other rules that I need for my CMS?), but I know that my manual method works fine.
Here's what cPanel is giving me 404's for via the Redirects section:
And here's the manual method that works fine when I enter this into a .htaccess file manually (which also displays via the Redirects section, by the way):
My client would like the ability to add their own redirects so if they could do so via this Redirects GUI, it'd be great.
Thanks,
Stephen
When using the Redirects section of cPanel, is it possible to change the format that the redirects are created in? This is because I keep getting 404 pages for the way cPanel creates them (maybe because it's clashing with other rules that I need for my CMS?), but I know that my manual method works fine.
Here's what cPanel is giving me 404's for via the Redirects section:
Code:
RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^test$ "http\:\/\/www\.mywebsite\.org\.uk\/about\/test\/" [R=301,L]
Code:
Redirect 301 /test http://www.mywebsite.org.uk/about/test/
Thanks,
Stephen