Skip to main content

mod_rewrite help

Comments

2 comments

  • cPanelLauren
    Hello, Have you tried any of the suggestions listed here: Reference: mod_rewrite, URL rewriting and "pretty links" explained They break it down pretty well.
    0
  • 24x7server
    Try the following rule in your ".htaccess" file, it will replace all space characters (\s or %20) to hyphen - Options +FollowSymlinks -MultiViews RewriteEngine on RewriteBase / # keep replacing space to hyphen until there is no space use internal rewrite RewriteRule ^([^\s%20]*)[\s%20]+(.*)$ $1-$2 [E=NOSPACE:1] # when there is no space make an external redirection RewriteCond %{ENV:NOSPACE} =1 RewriteRule ^([^\s%20]+)$ $1 [R=301,L]
    0

Please sign in to leave a comment.