my current .htaccess code is RewriteEngine On RewriteCond %{HTTP_HOST} !^domain.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301] RewriteRule ([^/\.]+)/$ script.php?a=$1 [L] This basically masks domain.com/script.php?a=anything-they-type to domain.com/anything-the...
I have a page that is index.php?article=33 firstly, any way I can make it so that it is /article-title/ by reading from mysql the title of the article? If not, how can I change it to /article/33/
I have tried to install a bunch of mods here that contain mod_rewrite rules and each one had errors. The links on the page worked (so they showed what they needed to show (e.g.: domain.com/forim/catname.html) but when I clicked on it, it gave me errors such as viewtopic.php could not be found and th...