Many pages showing "No Data Received" in the dashboard, problem with pretty urls?
Permalink
It's been a while (three weeks) since I used a concrete5 site I have been developing on, but now when I return many pages are showing "No Data Received" In Google Chrome.
Previously I changed my site to show pretty urls (and minus "index.php")
[code]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~myurl/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
This works all right, but now it seems like a lot of pages are on the dashboard link to "index.php/whichever-link" instead of just "whichever-link" which is giving me the "No Data received" message.
If removed the "index.php" in the address bar to just "whichever-link" it works but I'm not sure what to do because it doesn't make sense to go in a change a bunch of links on my dashboard (which was working previously).
It seems like *some* pages work with "index.php" in the address (on the dashboard) but that other pages do not work unless the "index.php" is removed from the address.
Any ideas
Previously I changed my site to show pretty urls (and minus "index.php")
[code]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~myurl/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
This works all right, but now it seems like a lot of pages are on the dashboard link to "index.php/whichever-link" instead of just "whichever-link" which is giving me the "No Data received" message.
If removed the "index.php" in the address bar to just "whichever-link" it works but I'm not sure what to do because it doesn't make sense to go in a change a bunch of links on my dashboard (which was working previously).
It seems like *some* pages work with "index.php" in the address (on the dashboard) but that other pages do not work unless the "index.php" is removed from the address.
Any ideas
Now all the links on my dashboard are minus the "index.php" part and seem to be working now.