Re: Upgrading from 1.6.3 (still some css & addressing issue
Posted: Tue Oct 20, 2015 7:24 pm
pointed the nameserver to the new location..
looking good..
only one issue I can find! that's a great start..
url rewriting isn't working properly.. a bunch of broken links
it's using the ...index.php?contentid=12... style urls..
my htaccess:
I also tried this:
Any ideas?
looking good..
only one issue I can find! that's a great start..
url rewriting isn't working properly.. a bunch of broken links
it's using the ...index.php?contentid=12... style urls..
my htaccess:
Code: Select all
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
</IfModule>
Code: Select all
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
Any ideas?