Jump to content

Grandma

Clients
  • Joined

  • Last visited

  1.    Grandma reacted to a post in a topic: Friendly URL Rewrite
  2.    Jim M reacted to a post in a topic: Friendly URL Rewrite
  3. you're the best! THANK YOU!!
  4. ahhhh got it! Fixed it. try now Thank you!
  5. I just checked and everything works. Login via cpanel using credentials I provided. I just checked and everything worked. I placed the code back into .htaccess as per your instruction. Thank you for your help!
  6. Just did it. Thank you!
  7. root directory.
  8. Supports apache and supports rewrites. After changing .htaccess url structure didn't change but says admin page can't be found .htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # If the request is for a valid file or directory, don't rewrite RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Remove /index.php from the URL RewriteRule ^index\.php/(.*)$ /$1 [L,R=301] # Handle all other requests through index.php RewriteRule ^(.*)$ index.php?/$1 [L,QSA] </IfModule>
  9. How to remove that index.php without rewriting them? If I rewrite them for current pages and then create new pages. It will be an issue for the future pages correct? I tried rewriting via .htaccess and all pages were 404 after... Thanks
  10. Hey. I've got a problem with perma link structure and I tried everything but don't know how to fix it. after domain, there is /index.php/ on each page of the website. How to fix it? Thanks!