我正在为网址重写做代码,在.htaccess
中编写以下代码并在cpanel中提供子域名链接后,页面正在正确导航..但页面中甚至没有显示单个内容。实际上页面是空的......有人可以帮我
注意:它适用于其他文件夹...例如:buy.mydomain.in/buy正常工作(.htaccess中的代码是从RewriteEngine On到最后一个)
RewriteEngine On
#subdomain and folders
RewriteCond %{HTTP_HOST} !^jobs\.xxxx.in [NC]
RewriteRule ^(.*)$ http://jobs.xxxx.in/$1 [R=301,L]
#remove .php和ad slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/$ http://xxxx.in/jobs/$1 [R=301,L]
1. # Redirect external .php requests to extensionless url
RewriteCond %{THE_REQUEST} ^(.+)\.php([#?][^\ ]*)?\ HTTP/
RewriteRule ^(.+)\.php$ http://xxxx.in/jobs/$1 [R=301,L]
# Resolve .php file for extensionless php urls
RewriteRule ^([^/.]+)$ $1.php [L]