How can I disable it manually, since I can't go into the administration interface. Thanx for providing a detailed help, cause I'm no rocket scientist when it comes to php
Disabling URL rewriting manually
-
bumble
Disabling URL rewriting manually
Hi everyone, I made a big mistake: I enabled URL rewriting, and now I can't access to my blog anymore
How can I disable it manually, since I can't go into the administration interface. Thanx for providing a detailed help, cause I'm no rocket scientist when it comes to php
How can I disable it manually, since I can't go into the administration interface. Thanx for providing a detailed help, cause I'm no rocket scientist when it comes to php
-
bumble
-
bumble
edit the .htaccess file in your blogs root :
but make sure you put the right directory in the second line "DirectoryIndex /serendipity/index.php"
[edit]missed your last reply...[/edit]
Code: Select all
# BEGIN s9y
DirectoryIndex /serendipity/index.php
<Files *.tpl.php>
deny from all
</Files>
<Files *.tpl>
deny from all
</Files>
<Files *.sql>
deny from all
</Files>
<Files *.inc.php>
deny from all
</Files>
<Files *.db>
deny from all
</Files>
# END s9y
[edit]missed your last reply...[/edit]