Hello,
now I run my site with php 5.4 apache.
my site URL is like this:
https://www.test.de
My Hoster will make an php update soon. (php 5.6 CGI)
to test the site with php 5.6 I putted this in my htaccess file:
AddHandler php56-cgi .php
I get a redirection-error when I open the site in my browser.
When I deactivate this option dbseo settings, the site works normally:
Force Forum Directory Index
If yes, this setting will crop out /forum.php (or whatever other script name you've defined as forum root in vBulletin Options). This is useful if you've already built page rank for /index.php.
But now my site URL is like this:
https://www.test.de/index.php
I dont want to display /index.php or /forum.php in the URL.
my .htaccess:
Code:
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/dbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|dbseocp/|modcp/|cron|mobiquo|forumrunner|api\.php|reviewpost/|classifieds/|photopost/)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ dbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|dbseocp|modcp|clientscript|cpstyles|images|reviewpost|classifieds|photopost)/
RewriteRule ^(.+)$ dbseo.php [L,QSA]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) http://www.test.sps-forum.de/$1 [R=301,L]
AddHandler php56-cgi .php
what can I do now?