Quote:
Originally posted by fastforward
This may or may not help. It will probably confuse things even more 
Here's what I have in my httpd.conf:
Code:
RewriteRule ^/f([0-9]+)/?$ /forumdisplay.php?forumid=$1&s=$2 [L]
RewriteRule ^/t([0-9]+)\.html$ /showthread.php?threadid=$1 [L]
I dispensed with the session tag as it wasn't really helping the spiders becaue the number would change each time anyway. I also edited all my templates to sort out the drop-down problems (I did this before I read porfiry's post).
In your problem examples I notice you don't start the url with a slash. You might want to try that. You never know.
|
what do i need to do to remove the session tag but still have this format
http://animeboards.com/f38/s
http://animeboards.com/t20418/s.html
?
currently i have in my httpd.conf
Quote:
RewriteEngine on
RewriteRule ^/f([0-9]+)/s([^/]+?)$ /forumdisplay.php?forumid=$1&s=$2 [L]
RewriteRule ^/t([0-9]+)/s([^/]+?)\.html$ /showthread.php?threadid=$1&s=$2 [L]
RewriteRule ^/s([^/])+?/$ /index.php?s=$1 [L]
RewriteRule ^/html/.* /html/index.php [L]
|
thanks