Quote:
Originally Posted by ShackMaster
Hi Logician... I've tried to get the SEO'd URL working and get a 'Page Not Found' error when trying to access the pages. I've entered the rewrite info into my htaccess file within my forum root directory and then checked the appropriate block in options.
It says something about apache server in the instructions, not sure if this is the problem or not, but I do have the following in my cpanel:
I don't understand how the handlers work or even what extension to place in field... or if this will even get me where I need to be.
Any ideas?
Thanks!
|
Make sure you .htaccess looks like this
Quote:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^view_(.*).htm$ view.php?pg=$1
|
if this is your only .htaccess or if forum is in the root directory
you might want to write it like this
Quote:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^view_(.*).htm$ view.php?pg=$1
|
[/QUOTE]