Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. .htaccess
  2. index.php
  3. topics.php
  4. create.php
  5. register.php
  6. templates/
  7. frontpage.php
  8. topics.php
  9. create.php
  10. register.php
  11. includes/
  12. header.php
  13. footer.php
  14.  
  15. RewriteEngine On # Turn on the rewriting engine
  16.  
  17. # Manually rewriting rules for pages to preserve user profile pages - need to fix later
  18. RewriteRule ^about$ about.php [NC,L] # take out .php extention
  19. RewriteRule ^register$ register.php [NC,L] # take out .php extention
  20. RewriteRule ^create$ create.php [NC,L] # take out .php extention
  21.  
  22. # Rewrite topic page
  23. RewriteRule ^topics/category/([A-Za-z0-9-]+)/?$ topics.php?category=$1 [NC,L]
  24.  
  25. # Rewrite user profile pages to MyMentor.Codes/username
  26. RewriteRule ^([A-Za-z0-9-]+)/?$ user.php?username=$1 [NC,L]
  27.  
  28. <a href="about"></a>
  29. <a href="register"></a>
  30. <a href="create"></a>
  31. <a href="find-mentor"></a>
  32.  
  33. <a href="topics/category/<?php echo $category->name; ?>"><?php echo $category->name; ?></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement