Permalink issues

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    help Permalink issues

    Hello
    I need htaccess code to make permalinks and redirect them on a single file
    like i need example.com/a
    example.com/b
    example.com/c
    example.com/anything
    these urls to show my index file

    #2
    do u mean u want to hide folder files so that nobody can access ur folder files using the folder url?
    sigpic

    WANT GOOD CHEAP HOSTING WITH 99% UPTIME? THEN PM ME FOR DETAILS!!

    Comment


      #3
      Old question but I guess you was looking for this:
      Code:
      RewriteEngine on
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule ^(.*)$ /index.php?path=$1 [NC,L,QSA]

      Comment

      Working...
      X