Forum Moderators: phranque
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule . /index.php [L]
</IfModule>
when i changed settings i wanted directories to read
"web-design" and not "webdesign". it all works good. my only problem is that i have some links on other sites that are linking to "webdesign" so when i changed rewrite that page is no longer found is there a line i can write that will point all webdesign request to web-design folder instead?
RewriteRule ^webdesign/(.*)$ httep://www.example.com/web-design/$1 [R=301,L]
For more information, see the documents cited in our forum charter [webmasterworld.com] and the tutorials in the Apache forum section of the WebmasterWorld library [webmasterworld.com].
Jim