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

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -