Page 3 of 3

Re: Upgrading from 1.6.3 (still some css & addressing issue

Posted: Tue Oct 20, 2015 7:24 pm
by stevenryals
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:

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>
I also tried this:

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?

Re: [SOLVED] Upgrading from 1.6.3

Posted: Tue Oct 20, 2015 8:57 pm
by stevenryals
added mod_rewrite to my config file..

all working now..

Reallyl excited this is done.. Big thanks to both of you for all of your help!! MUCH APPRECIATED!