我正在制作一个项目,用于建立一个包含国家/地区特定网址的网站,以使其更具针对性和独立性。
这就是我想要的:
open - domain.com并阅读此文件index.php
当打开domain.com/us/并读取此文件country.php(/ us /它可以是/ de / / in / / uk /表示根据请求动态生成的国家/地区代码。< / p>
当打开domain.com/us/free-free-free-ad1965.html(其网站上的帖子,来自数据库的ID为1965,所以它应该读取ad.php文件。
如果打开domain.com/xyz不存在,则应该给出404错误,并且读取404.php文件同样适用于domain.com/us/xyz
这是我目前的htaccess代码:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
RewriteRule ^(.*)/ country.php?countrycode=$1 [NC]
RewriteRule ^(.*)/(.*)-ad(.*).html ad.php?countrycode=$1&post=$2&id=$3 [NC]
RewriteRule ^maintenance\.html$ maintenance.php [NC,L]
RewriteRule ^submit\.html$ submit.php [NC,L]
RewriteRule ^privacy\.html$ privacy.php [NC,L]
RewriteRule ^terms\.html$ terms.php [NC,L]
RewriteRule ^contact\.html$ contact.php [NC,L]
ErrorDocument 400 /404.php
ErrorDocument 401 /404.php
ErrorDocument 403 /404.php
ErrorDocument 404 /404.php
ErrorDocument 500 /404.php
应用此htaccess选项后,每次都可正常工作,选项2&amp; 3&amp; 4彼此冲突。所有四个选项都是分开的,应该相互协作。
请帮帮我怎么做?
答案 0 :(得分:0)
规则的具体程度如何更具体。
您应该更改订单。
rewriteRule ^(。)/(。) - ad(。*)。html ad.php?countrycode = $ 1&amp; post = $ 2&amp; id = $ 3 [NC] 应该更多了
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)/(.*)-ad(.*).html ad.php?countrycode=$1&post=$2&id=$3 [NC]
RewriteRule ^(.*)/$ country.php?countrycode=$1 [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
RewriteRule ^maintenance\.html$ maintenance.php [NC,L]
RewriteRule ^submit\.html$ submit.php [NC,L]
RewriteRule ^privacy\.html$ privacy.php [NC,L]
RewriteRule ^terms\.html$ terms.php [NC,L]
RewriteRule ^contact\.html$ contact.php [NC,L]
ErrorDocument 400 /404.php
ErrorDocument 401 /404.php
ErrorDocument 403 /404.php
ErrorDocument 404 /404.php
ErrorDocument 500 /404.php