Do You Have mod_rewrite installed on stoli?

Status
Not open for further replies.

crazykidcastle21

New Member
Messages
8
Reaction score
0
Points
0
Does x10Hosting have mod_rewrite installed on stoli?
I need to have it installed for my Staff Panel to work correctly for my website.
 

Zubair

Community Leader
Community Support
Messages
8,766
Reaction score
305
Points
83
Does x10Hosting have mod_rewrite installed on stoli?
I need to have it installed for my Staff Panel to work correctly for my website.

mod_rewrite is already installed on all free servers. Please tell me what problem you are facing?
 

crazykidcastle21

New Member
Messages
8
Reaction score
0
Points
0
I was just woundering, seeing as i'm having some trouble with my Panel.
Must be something at my end, i'll contact the person who created and coded my Panel, see what's wrong with it.
 

dlukin

New Member
Messages
427
Reaction score
25
Points
0
Make sure you have

RewriteBase /

above any RewriteRule in the .htaccess file.

You may have to adjust it to

RewriteBase /foo

if the .htaccess is in foo directory rather than document root (public_html)
 

crazykidcastle21

New Member
Messages
8
Reaction score
0
Points
0
Still getting the 404 error
Heres what the .htaccess file in my staff panel has in it

PHP:
Options -Indexes

# Various rewrite rules.
<IfModule mod_rewrite.c> 
RewriteEngine on
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_URI} !=/favicon.ico

RewriteRule ^(.*)(\.)(.*)$ index.php?url=$1.$3 [L,QSA] 
RewriteRule ^ajax$ _res/ajax.php [QSA] 
#RewriteRule ^(.*)$ index.php?t=$1 [L,QSA]
</IfModule>
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
1. Your main domain redirects off site
2. You do not seem to have an index.php in you public_html
 
Status
Not open for further replies.
Top