私のRewriteRuleがある:ページソースを表示できますが、ページが空白になるのはなぜですか?
RewriteRule ^m/watch/([0-9]+)$ /m/watch.php?v=$1 [NC,L]
私はページhttp://www.example.com/m/watch/555へ行くしようとするには、空白としてロードされますが、私は、ビュー・ソースをクリックしたときに私のコードのすべてがそこにあります。なぜこれが起こるのですか?
ルールをスキップしてhttp://www.example.com/m/watch.php?v=555に行くと、ページが正常に読み込まれます。
.htaccessファイル
# block access to ini
<Files ~ "\.ini$">
Order allow,deny
Deny from all
</Files>
ErrorDocument 404 /not_found.php
Options +FollowSymlinks
RewriteEngine on
#redirect to www
RewriteCond %{HTTP_HOST} ^brocktv.ca$
RewriteRule ^(.*)$ "http\:\/\/www\.brocktv\.ca\/$1" [R=301,L]
RewriteRule ^team$ team.php [NC,L]
RewriteRule ^team/$ team.php [NC,L]
RewriteRule ^involved$ involved.php [NC,L]
RewriteRule ^involved/$ involved.php [NC,L]
RewriteRule ^home$ home.php [NC,L]
RewriteRule ^home/$ home.php [NC,L]
RewriteRule ^m/watch/([0-9]+)$ /m/watch.php?v=$1 [NC,L]
RewriteRule ^m/watch/([0-9]+)/$ /m/watch.php?v=$1 [NC,L]
RewriteRule ^watch/([0-9]+)$ watch.php?v=$1 [NC,L]
RewriteRule ^watch/([0-9]+)/$ watch.php?v=$1 [NC,L]
RewriteRule ^isff$ ISFF.php [NC,L]
RewriteRule ^isff/$ ISFF.php [NC,L]
RewriteRule ^renderthis$ renderthis.php [NC,L]
RewriteRule ^renderthis/$ renderthis.php [NC,L]
RewriteRule ^oweek$ oweek.php [NC,L]
RewriteRule ^oweek/$ oweek.php [NC,L]
RewriteRule ^new$ new.php [NC,L]
RewriteRule ^new/$ new.php [NC,L]
RewriteRule ^m/shows$ /m/shows.php [NC,L]
RewriteRule ^m/shows/$ /m/shows.php [NC,L]
RewriteRule ^m/categories$ /m/categories.php [NC,L]
RewriteRule ^m/categories/$ /m/categories.php [NC,L]
RewriteRule ^m/social$ /m/social.php [NC,L]
RewriteRule ^m/social/$ /m/social.php [NC,L]
RewriteRule ^m/contests$ /m/contests.php [NC,L]
RewriteRule ^m/contests/$ /m/contests.php [NC,L]
# temporary redirect for jobs
RewriteRule ^jobs$ http://www.busu.net/get-involved/jobs [R,NC,L]
RewriteRule ^jobs/$ http://www.busu.net/get-involved/jobs [R,NC,L]
# 480 weeks
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=290304000, public"
</FilesMatch>
# compress the files
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/x-javascript
# removes some bugs
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent
Options -Indexes FollowSymLinks
RewriteCond %{HTTP_HOST} ^brocktv.ca$ [OR]
RewriteCond %{HTTP_HOST} ^www.brocktv.ca$
RewriteRule ^elections\/?$ "http\:\/\/www\.brocktv\.ca\/elections\.php" [R=302,L]
RewriteCond %{HTTP_HOST} ^brocktv.ca$ [OR]
RewriteCond %{HTTP_HOST} ^www.brocktv.ca$
RewriteRule ^isff$ "http\:\/\/www\.brocktv\.ca\/ISFF\.php" [R=301,L]
は、あなたがより多くを提供することができます私はあなたのCSSやJSファイルと競合サイトが
は、例えばCSSファイルが含まれる「隠された」ことになり、書き換えルールを持っていると思いますあなたの.htacessかURL? –