Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: nicer slug url rewrite plugin (done!)


aiitee
Member

@motaboy21

should i add the first code before the ?> right? because that didnt worked out for me… and the mod rewrite rules i added to the .htacess file, i have some coding there:

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=$1&page=$2 [L,QSA]

RewriteRule ^forum/([^/]+)/?$ /forum.php?id=$1 [L,QSA]

RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=$1&page=$2 [L,QSA]

RewriteRule ^topic/([^/]+)/?$ /topic.php?id=$1 [L,QSA]

RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /tags.php?tag=$1&page=$2 [L,QSA]

RewriteRule ^tags/([^/]+)/?$ /tags.php?tag=$1 [L,QSA]

RewriteRule ^tags/?$ /tags.php [L,QSA]

RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /profile.php?id=$1&page=$2 [L,QSA]

RewriteRule ^profile/([^/]+)/([^/]+)/?$ /profile.php?id=$1&tab=$2 [L,QSA]

RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /profile.php?id=$1&tab=$2&page=$3 [L,QSA]

RewriteRule ^profile/([^/]+)/?$ /profile.php?id=$1 [L,QSA]

RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /view.php?view=$1&page=$2 [L,QSA]

RewriteRule ^view/([^/]+)/?$ /view.php?view=$1 [L,QSA]

RewriteRule ^rss/?$ /rss.php [L,QSA]

RewriteRule ^rss/forum/([^/]+)/?$ /rss.php?forum=$1 [L,QSA]

RewriteRule ^rss/topic/([^/]+)/?$ /rss.php?topic=$1 [L,QSA]

RewriteRule ^rss/tags/([^/]+)/?$ /rss.php?tag=$1 [L,QSA]

RewriteRule ^rss/profile/([^/]+)/?$ /rss.php?profile=$1 [L,QSA]

</IfModule>

should i delete this and copy the one you gave me?

Skip to toolbar