html - Re-write links only not redirect -
hi don't know htaccess , can't understand how codes work.
can me this
www.site.com/forums/index.php?/cp/3-welcome/
will change text
www.site.com/forums/welcome
not redirect it.
you first want ensure rewrite rules enabled. can through .htaccess file using code similar to:
<directory /var/www/website/html> rewriteengine on rewritecond %{request_uri} !^/images/ rewriterule ... ... rewriterule </directory>
once done should able run rewritecond command redirect rewrite engine enabled.
your redirect within .htaccess file should like:
rewriterule ^http://([^/]*)/forums/welcome(\d+)/(.*)$ http://$1/index.php?/cp/3-welcome/
of course may need update/edit required specific needs, should @ least give general idea.
Comments
Post a Comment