Welcome Guest, Not a member yet? Register   Sign In
301 Redirects
#1

[eluser]E303[/eluser]
With the .htaccess file setup for friendly urls, I am having problems with setting up 301 redirects.

When i put the code in for the 301 redirects my css doesn't load for the site. It seems anything that I use <?= base_url();?> doesn't load properly. What is the solution?
#2

[eluser]Michael Wales[/eluser]
Please paste your .htaccess file here so we can look at it.
#3

[eluser]E303[/eluser]
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
#4

[eluser]Unknown[/eluser]
Try this...

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]




Theme © iAndrew 2016 - Forum software by © MyBB