belick Posted June 12, 2009 Share Posted June 12, 2009 I am looking for a code that will direct my links from something like Click Here to click-here I want to be able to type links with spaces and uppercase words and to be able to search the code in the original form example: my htaccess has: #RewriteRule ^(.*)\.html$ index.php?Level2=$2 [L] when $2 is the file I am looking for... so I want to be able to have convert links that have spaces to lowercase and with dashes so code like: <li><a href="Credit Card Validation">Credit Card Validation</a></li> will assign the $2 to credit-card-validation and stilll show on the html code the spaces and uppercase Thanks ahead Quote Link to comment https://forums.phpfreaks.com/topic/161916-convert-links/ Share on other sites More sharing options...
dreamwest Posted June 12, 2009 Share Posted June 12, 2009 Yeah strreplace $filename = "Credit Card Validation"; $filename=str_replace(' ',"-",$filename); //oututs Credit-Card-Validation Quote Link to comment https://forums.phpfreaks.com/topic/161916-convert-links/#findComment-854397 Share on other sites More sharing options...
belick Posted June 14, 2009 Author Share Posted June 14, 2009 I need a code for htaccess... so the page will have links with spaces and capital letter Quote Link to comment https://forums.phpfreaks.com/topic/161916-convert-links/#findComment-855646 Share on other sites More sharing options...
wildteen88 Posted June 14, 2009 Share Posted June 14, 2009 modrewrite cannot rewrite links within your html. You'll need to update your links yourself Quote Link to comment https://forums.phpfreaks.com/topic/161916-convert-links/#findComment-855755 Share on other sites More sharing options...
corbin Posted June 14, 2009 Share Posted June 14, 2009 Or, if you're lazy, you could do what I once did on a site... Buffer all output, then use preg_replace to alter links. Quote Link to comment https://forums.phpfreaks.com/topic/161916-convert-links/#findComment-855760 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.