NEED HELP HTCACCESS

Status
Not open for further replies.

betademo

New Member
Messages
7
Reaction score
0
Points
1
Hi guys,

I hope you can help me I don't know what happened but everything was working before then suddenly it stopped from working I don't know if its because of the server but I need some to explain or teach me how to resolve this.
Basically I have a fancyindexing in my htaccess so it is like removing the .php in the url but suddenly not found for some reason.
Here is my whole htaccess:


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^faucets/([0-9a-zA-Z-]+)$ faucets.php?type=$1 [NC,L]
RewriteRule ^faucet/([0-9a-zA-Z=]+)$ faucet.php?id=$1 [NC,L]
RewriteRule ^activate/([0-9a-zA-Z=]+)$ activate.php?user_id=$1 [NC,L]
RewriteRule ^parser/([0-9]+)$ parser.php?delete_faucet=$1 [NC,L]
RewriteRule ^([^\.]+)$ $1.php [NC,L]
DirectoryIndex index.php
RewriteRule ^dashboard index.php [NC,L]
IndexIgnore *Options +Indexes
IndexOptions -FancyIndexing

php_value upload_max_filesize 96M
php_value post_max_size 96M
php_value memory_limit -1
php_value maximum -1
php_value max_execution_time 259200
 
Status
Not open for further replies.
Top