You must be logged in to be able to vote. Click here to login or sign up.

Vote Up!
Vote Down!

Install question: rewrite rules

1 point | submitted by about 2 years ago | 1 comment

Are there specific rewrite rules to implement? After installation, when I click on a tab (e.g., 'Hot'), there is no page. I'm not expert in Apache2 but can find my way around if given guidance. Are there specific rewrite rules that need to be implemented? The README.markdown file doesn't provide them. Please help; I really want to use noostr.

You must be logged in to leave a comment.

Vote Up!
Vote Down!
2 points | submitted by about 2 years ago | Link

There should be an ".htaccess" file included in the archive with the necessary rules (Noostr currently requires rewriting in order to function).

Just in case, though, here they are:

Options +FollowSymLinks

RewriteEngine on

ServerSignature Off

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

Reply