| Author | 
  | 
fenor
 
 
  Joined: 21 Feb 2013 Posts: 5
 
  | 
 | 
| Back to top | 
 | 
cbj4074
 
 
  Joined: 02 Nov 2012 Posts: 24 Location: United States
  | 
 | 
| Back to top | 
 | 
fenor
 
 
  Joined: 21 Feb 2013 Posts: 5
 
  | 
 Posted: Thu 21 Feb '13 18:35    Post subject:  | 
     | 
 
  | 
 
| I use php as module, not as CGI but it looks like that bug. | 
 
  | 
| Back to top | 
 | 
cbj4074
 
 
  Joined: 02 Nov 2012 Posts: 24 Location: United States
  | 
 Posted: Thu 21 Feb '13 19:26    Post subject:  | 
     | 
 
  | 
 
| If it's the same issue, it sounds as though you have no choice but to change your URL structure and avoid the periods, or switch web-servers altogether. | 
 
  | 
| Back to top | 
 | 
James Blond Moderator
  
  Joined: 19 Jan 2006 Posts: 7443 Location: EU, Germany, Next to Hamburg
  | 
 Posted: Thu 21 Feb '13 20:10    Post subject:  | 
     | 
 
  | 
 
Could you please post a full example of the URL at pastebin?
 
 
Is that the only rewrite rule you have? | 
 
  | 
| Back to top | 
 | 
fenor
 
 
  Joined: 21 Feb 2013 Posts: 5
 
  | 
 Posted: Fri 22 Feb '13 7:40    Post subject:  | 
     | 
 
  | 
 
sorry, but what would you need on pastebin?
 
 
I rewrote my php to process the request_uri and not the _GET['p'] it looks it is working now. | 
 
  | 
| Back to top | 
 | 
James Blond Moderator
  
  Joined: 19 Jan 2006 Posts: 7443 Location: EU, Germany, Next to Hamburg
  | 
 Posted: Fri 22 Feb '13 11:07    Post subject:  | 
     | 
 
  | 
 
| It would be nice to have all your RewriteRules and condition ;)If not too long you can post it in the forum. | 
 
  | 
| Back to top | 
 | 
fenor
 
 
  Joined: 21 Feb 2013 Posts: 5
 
  | 
 | 
| Back to top | 
 | 
James Blond Moderator
  
  Joined: 19 Jan 2006 Posts: 7443 Location: EU, Germany, Next to Hamburg
  | 
 Posted: Fri 22 Feb '13 11:23    Post subject:  | 
     | 
 
  | 
 
You might try 
 
 	  | Code: | 	 		  
 
RewriteEngine on
 
RewriteRule ^(favicon\.ico|robots\.txt|index\.php) - [L]
 
RewriteCond %{SCRIPT_FILENAME} !-f
 
RewriteCond %{SCRIPT_FILENAME} !-d
 
RewriteRule ^(.*)$ index.php?p=$1 [L]
 
 | 	 
  | 
 
  | 
| Back to top | 
 | 
fenor
 
 
  Joined: 21 Feb 2013 Posts: 5
 
  | 
 Posted: Fri 22 Feb '13 11:36    Post subject:  | 
     | 
 
  | 
 
| nothing changed | 
 
  | 
| Back to top | 
 |