You must be logged in to be able to vote. Click here to login or sign up.
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.
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]