Forum Moderators: coopster
Example:
PHP_SELF = [mysite.com...]
when the rewrite is:
RewriteCond %{HTTP_HOST} [^.]*mysite\.com$
RewriteCond %{REQUEST_URI}!^/mysite/
RewriteRule ^(.*)$ /mysite/$1 [L]
Namely, the extra appending of the host name as a subdirectory in the rewrite...
The filename of the currently executing script, relative to the document root. For instance, $_SERVER['PHP_SELF'] in a script at the address [example.com...] would be /test.php/foo.bar.
so
PHP_SELF = [mysite.com...]
shouldn't be what you get anyway. It should be '/mysite/index.php' or whatever.
[mysite.com...]
is there a way to get it to be just [mysite.com...]